2020-11-07 11:35:30 +00:00
|
|
|
{ lib, mkDerivation, unzip, fetchFromGitHub, qmake, qtmultimedia, qtbase }:
|
2010-12-26 17:18:13 +00:00
|
|
|
|
2020-11-07 11:35:30 +00:00
|
|
|
mkDerivation rec {
|
|
|
|
version = "unstable-20-06-26";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "herqq";
|
2010-12-26 17:18:13 +00:00
|
|
|
|
2020-09-07 17:43:40 +01:00
|
|
|
nativeBuildInputs = [ qmake ];
|
|
|
|
buildInputs = [ qtbase unzip qtmultimedia ];
|
2010-12-26 17:18:13 +00:00
|
|
|
|
2020-11-07 11:35:30 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
sourceRoot = "source/herqq";
|
2017-09-02 05:30:01 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ThomArmax";
|
|
|
|
repo = "HUPnP";
|
2020-11-07 11:35:30 +00:00
|
|
|
rev = "c8385a8846b52def7058ae3794249d6b566a41fc";
|
|
|
|
sha256 = "FxN/QlLB3sZ6Vn/9VIKNUntX/B4+crQZ7t760pwFqY8=";
|
2010-12-26 17:18:13 +00:00
|
|
|
};
|
|
|
|
|
2020-11-07 11:35:30 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://herqq.org";
|
2010-12-26 17:18:13 +00:00
|
|
|
description = "A software library for building UPnP devices and control points";
|
2018-03-19 21:13:24 +00:00
|
|
|
platforms = platforms.linux;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = [ ];
|
2010-12-26 17:18:13 +00:00
|
|
|
};
|
|
|
|
}
|