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

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

  buildInputs = [ qt4 unzip qmake4Hook ];

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