nixpkgs/pkgs/development/libraries/libgpod/default.nix
Lluís Batlle i Rossell 8e09a9bb3d Adding gtkpod, and fixing libgpod meta info.
svn path=/nixpkgs/trunk/; revision=15016
2009-04-13 15:41:10 +00:00

18 lines
515 B
Nix

{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 ];
meta = {
homepage = http://gtkpod.sourceforge.net/;
description = "Library used by gtkpod to access the contents of an ipod";
license = "LGPL";
};
}