mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
26 lines
677 B
Nix
26 lines
677 B
Nix
{ lib, mkDerivation, fetchFromGitHub, qmake, qtmultimedia, qtbase }:
|
|
|
|
mkDerivation rec {
|
|
version = "unstable-20-06-26";
|
|
pname = "herqq";
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
buildInputs = [ qtbase qtmultimedia ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
sourceRoot = "${src.name}/herqq";
|
|
src = fetchFromGitHub {
|
|
owner = "ThomArmax";
|
|
repo = "HUPnP";
|
|
rev = "c8385a8846b52def7058ae3794249d6b566a41fc";
|
|
sha256 = "FxN/QlLB3sZ6Vn/9VIKNUntX/B4+crQZ7t760pwFqY8=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "http://herqq.org";
|
|
description = "Software library for building UPnP devices and control points";
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|