3
0
Fork 0
forked from mirrors/nixpkgs

Adding libgpod, for a future gtkpod.

svn path=/nixpkgs/trunk/; revision=15015
This commit is contained in:
Lluís Batlle i Rossell 2009-04-13 15:41:00 +00:00
parent 06a957ecf6
commit a899bfc687
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, gettext, perl, perlXMLParser, pkgconfig, glib, libxml2 }:
stdenv.mkDerivation {
name = "libgpod-0.7";
src = fetchurl {
url = mirror://sourceforge/gtkpod/libgpod-0.7.0.tar.gz;
sha256 = "07jfxf4v6wd33aps9ry8kmp0k7lg1k933bag4f9vnpns3j5l63g1";
};
buildInputs = [ gettext perl perlXMLParser pkgconfig glib libxml2 ];
}

View file

@ -3443,6 +3443,11 @@ let
inherit fetchurl stdenv pkgconfig libusb libtool libexif libjpeg gettext;
};
libgpod = import ../development/libraries/libgpod {
inherit fetchurl stdenv gettext perl perlXMLParser pkgconfig libxml2;
inherit (gtkLibs) glib;
};
libical = import ../development/libraries/libical {
inherit stdenv fetchurl perl;
};