mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
76ec0dd430
svn path=/nixpkgs/branches/kde-4.7/; revision=27702
22 lines
537 B
Nix
22 lines
537 B
Nix
{ 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 ];
|
|
};
|
|
}
|