Rename hupnp to herqq

Don't pass it to kdelibs as it breaks kdelibs build

svn path=/nixpkgs/trunk/; revision=25289
This commit is contained in:
Yury G. Kudryashov
2010-12-26 17:18:13 +00:00
parent ac2b5582e2
commit e9e22a7238
5 changed files with 62 additions and 12 deletions
@@ -0,0 +1,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 ];
};
}
@@ -0,0 +1,22 @@
{ stdenv, fetchurl, qt4, unzip }:
stdenv.mkDerivation rec {
name = "herqq-0.8.0";
buildInputs = [ qt4 unzip ];
configurePhase = "qmake PREFIX=$out herqq.pro";
src = fetchurl {
url = "mirror://sourceforge/hupnp/${name}.zip";
sha256 = "0z1z9f48fhdif3wd7gn2gj0yxk15f0lpm01q0igsccv8m1y3mphn";
};
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 ];
};
}
+23
View File
@@ -0,0 +1,23 @@
{ stdenv, fetchsvn, qt4 }:
stdenv.mkDerivation {
name = "herqq-0.8.0-r91";
buildInputs = [ qt4 ];
configurePhase = "qmake PREFIX=$out herqq.pro";
src = fetchsvn {
url = http://hupnp.svn.sourceforge.net/svnroot/hupnp/trunk/herqq;
rev = 91;
sha256 = "122md1kn8b5a1vdpn5kisqi6xklwwa57r4lacm1rxlkq3rpca864";
};
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 ];
};
}