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

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

  buildInputs = [ qt4 unzip ];

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

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

  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 ];
  };
}