linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / herqq / default.nix
blobf35d7528f4e84f5ab247401904888ddc6661200a
1 { lib, mkDerivation, unzip, fetchFromGitHub, qmake, qtmultimedia, qtbase }:
3 mkDerivation rec {
4   version = "unstable-20-06-26";
5   pname = "herqq";
7   nativeBuildInputs = [ qmake unzip ];
8   buildInputs = [ qtbase qtmultimedia ];
10   outputs = [ "out" "dev" ];
12   sourceRoot = "source/herqq";
13   src = fetchFromGitHub {
14     owner = "ThomArmax";
15     repo = "HUPnP";
16     rev = "c8385a8846b52def7058ae3794249d6b566a41fc";
17     sha256 = "FxN/QlLB3sZ6Vn/9VIKNUntX/B4+crQZ7t760pwFqY8=";
18   };
20   meta = with lib; {
21     homepage = "http://herqq.org";
22     description = "A software library for building UPnP devices and control points";
23     platforms = platforms.linux;
24     maintainers = [ ];
25   };