mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
gupnp-igd
svn path=/nixpkgs/trunk/; revision=33039
This commit is contained in:
parent
d2c81c17e0
commit
db0158f292
2 changed files with 23 additions and 0 deletions
21
pkgs/development/libraries/gupnp-igd/default.nix
Normal file
21
pkgs/development/libraries/gupnp-igd/default.nix
Normal 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/;
|
||||
};
|
||||
}
|
||||
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue