summary refs log tree commit diff
path: root/pkgs/development/libraries/herqq/0.7.0.nix
blob: 80bfaf638df46c6a8a3250c5aa0290dbcd107183 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, qt4, unzip }:

stdenv.mkDerivation rec {
  name = "herqq-0.7.0";


  buildInputs = [ qt4 unzip ];

  configurePhase = "qmake PREFIX=$out herqq.pro";

  src = fetchurl {
    url = "mirror://sourceforge/hupnp/${name}.zip";
    sha256 = "13z6wabakn2j57azhik9nvps50l85hrs028kkhn5cpd0pgcigmqz";
  };

  meta = {
    homepage = http://herqq.org;
    description = "A software library for building UPnP devices and control points";
    inherit (qt4.meta) platforms;
    maintainers = [ stdenv.lib.maintainers.urkud ];
  };
}