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:
Armijn Hemel 2008-06-18 22:34:49 +00:00
parent fee96dabb7
commit 1f42cdde48
2 changed files with 17 additions and 0 deletions

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

View File

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