aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/herqq/default.nix
blob: 8dc0df3a9f2fe7fa29f53eb0eb46376d377be8e2 (plain)
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
{ stdenv, unzip, fetchFromGitHub, qmake, qtmultimedia, qtbase }:

stdenv.mkDerivation rec {
  version = "2.1.0";
  pname = "herqq";

  nativeBuildInputs = [ qmake ];
  buildInputs = [ qtbase unzip qtmultimedia ];
  preConfigure = "cd herqq";

  src = fetchFromGitHub {
    owner = "ThomArmax";
    repo = "HUPnP";
    rev = version;
    sha256 = "1w674rbwbhpirq70gp9rk6p068j36rwn112fx3nz613wgw63x84m";
  };

  meta = with stdenv.lib; {
    homepage = "http://herqq.org";
    description = "A software library for building UPnP devices and control points";
    platforms = platforms.linux;
    maintainers = [ ];
    broken = true; # 2018-09-21, built with qt510 (which was removed) but neither qt59 nor qt511
  };
}