* Sync with the trunk.

svn path=/nixpkgs/branches/stdenv-updates/; revision=25308
This commit is contained in:
Eelco Dolstra
2010-12-28 16:42:00 +00:00
115 changed files with 2957 additions and 20 deletions

View File

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

View File

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

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