forked from mirrors/nixpkgs
Adding libgpod, for a future gtkpod.
svn path=/nixpkgs/trunk/; revision=15015
This commit is contained in:
parent
06a957ecf6
commit
a899bfc687
11
pkgs/development/libraries/libgpod/default.nix
Normal file
11
pkgs/development/libraries/libgpod/default.nix
Normal 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 ];
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue