nixpkgs/pkgs/development/libraries/herqq/default.nix
Vladimír Čunát 96d41e393d
treewide: purge maintainers.urkud
It's sad, but he's been inactive for the last five years.
Keeping such people in meta.maintainers is counter-productive.
2017-03-27 19:52:29 +02:00

20 lines
480 B
Nix

{ 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 = [ ];
};
}