add gupnp-tools. I can't actually run them, since there seems to be some issue with fontconfig that has not been configured correctly and i don't know why
svn path=/nixpkgs/trunk/; revision=12154
This commit is contained in:
parent
fee96dabb7
commit
1f42cdde48
2 changed files with 17 additions and 0 deletions
11
pkgs/tools/networking/gupnp-tools/default.nix
Normal file
11
pkgs/tools/networking/gupnp-tools/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{fetchurl, stdenv, gupnp, gssdp, pkgconfig, glib, libxml2, libsoup, gtk, libglade, gnomeicontheme, e2fsprogs}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gupnp-tools-0.6";
|
||||
src = fetchurl {
|
||||
url = "http://www.gupnp.org/sources/gupnp-tools/gupnp-tools-0.6.tar.gz";
|
||||
sha256 = "08fnggk85zqdcvm4np53yxw15b3ck25c2rmyfrh04g8j25qf50dj";
|
||||
};
|
||||
|
||||
buildInputs = [gupnp gssdp pkgconfig glib libxml2 libsoup gtk libglade gnomeicontheme e2fsprogs];
|
||||
}
|
|
@ -691,6 +691,12 @@ let pkgs = rec {
|
|||
inherit (gnome) libsoup;
|
||||
};
|
||||
|
||||
gupnptools = import ../tools/networking/gupnp-tools {
|
||||
inherit fetchurl stdenv gssdp gupnp pkgconfig libxml2 e2fsprogs;
|
||||
inherit (gtkLibs) gtk glib;
|
||||
inherit (gnome) libsoup libglade gnomeicontheme;
|
||||
};
|
||||
|
||||
gzip = useFromStdenv "gzip"
|
||||
(import ../tools/compression/gzip {
|
||||
inherit fetchurl stdenv;
|
||||
|
|
Loading…
Reference in a new issue