about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/herqq/default.nix
blob: 3e84432cd507793348080538155d9ea184e3040e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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 = "A software library for building UPnP devices and control points";
    platforms = platforms.linux;
    maintainers = [ ];
  };
}