Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
710 B
Nix
40 lines
710 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 = [ ];
|
|
};
|
|
}
|