c99a4f92ac
Using a unreleased commit from upstream. Also moved the derivation to mkLibsForQt5 to let the application choose its Qt5 version. Did not put an alias as previous version was broken since ages.
27 lines
687 B
Nix
27 lines
687 B
Nix
{ lib, mkDerivation, unzip, fetchFromGitHub, qmake, qtmultimedia, qtbase }:
|
|
|
|
mkDerivation rec {
|
|
version = "unstable-20-06-26";
|
|
pname = "herqq";
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
buildInputs = [ qtbase unzip qtmultimedia ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
sourceRoot = "source/herqq";
|
|
src = fetchFromGitHub {
|
|
owner = "ThomArmax";
|
|
repo = "HUPnP";
|
|
rev = "c8385a8846b52def7058ae3794249d6b566a41fc";
|
|
sha256 = "FxN/QlLB3sZ6Vn/9VIKNUntX/B4+crQZ7t760pwFqY8=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "http://herqq.org";
|
|
description = "A software library for building UPnP devices and control points";
|
|
platforms = platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|