gupnp-igd

svn path=/nixpkgs/trunk/; revision=33039
This commit is contained in:
Yury G. Kudryashov 2012-03-13 19:06:17 +00:00
parent d2c81c17e0
commit db0158f292
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, fetchurl, pkgconfig, glib, gupnp, python, pygobject }:
stdenv.mkDerivation rec {
name = "gupnp-igd-0.2.1";
src = fetchurl {
url = "http://www.gupnp.org/sites/all/files/sources/${name}.tar.gz";
sha256 = "18ia8l24hbylz3dnbg2jf848bmbx0hjkq4fkwzzfn57z021f0fh2";
};
propagatedBuildInputs = [ gupnp ];
buildInputs = [ glib python pygobject ];
buildNativeInputs = [ pkgconfig ];
meta = {
homepage = http://www.gupnp.org/;
};
}

View file

@ -822,6 +822,8 @@ let
inherit (gnome) libsoup;
};
gupnp_igd = callPackage ../development/libraries/gupnp-igd {};
gupnptools = callPackage ../tools/networking/gupnp-tools {
inherit (gnome) libsoup libglade gnomeicontheme;
};