2010-09-26 21:40:22 +02:00
|
|
|
{stdenv, fetchurl, gettext, perl, perlXMLParser, intltool, pkgconfig, glib,
|
2012-01-06 00:16:06 +01:00
|
|
|
libxml2, sqlite, libusb1, zlib, sg3_utils, gdk_pixbuf, taglib,
|
|
|
|
libimobiledevice, python, pygobject, mutagen }:
|
2009-04-13 17:41:00 +02:00
|
|
|
|
2010-09-26 21:40:22 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-01-06 00:16:06 +01:00
|
|
|
name = "libgpod-0.8.2";
|
2009-04-13 17:41:00 +02:00
|
|
|
src = fetchurl {
|
2012-01-06 00:16:06 +01:00
|
|
|
url = "mirror://sourceforge/gtkpod/${name}.tar.bz2";
|
|
|
|
sha256 = "14m0amy56q4riwvcjszv04a9zp7l2xk8nx0vvhy94yqd0sqfjm00";
|
2009-04-13 17:41:00 +02:00
|
|
|
};
|
|
|
|
|
2012-01-06 00:16:06 +01:00
|
|
|
preConfigure = "configureFlagsArray=( --with-udev-dir=$out/lib/udev )";
|
2010-09-26 21:40:22 +02:00
|
|
|
configureFlags = "--without-hal --enable-udev";
|
|
|
|
|
2012-01-06 00:16:06 +01:00
|
|
|
propagatedBuildInputs = [ glib libxml2 sqlite zlib sg3_utils
|
|
|
|
gdk_pixbuf taglib libimobiledevice python pygobject mutagen ];
|
2010-09-27 18:22:40 +02:00
|
|
|
|
2012-01-06 00:16:06 +01:00
|
|
|
buildNativeInputs = [ gettext perlXMLParser intltool pkgconfig perl
|
|
|
|
libimobiledevice.swig ];
|
2009-04-13 17:41:10 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://gtkpod.sourceforge.net/;
|
|
|
|
description = "Library used by gtkpod to access the contents of an ipod";
|
|
|
|
license = "LGPL";
|
2012-01-06 00:16:06 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
2009-04-13 17:41:10 +02:00
|
|
|
};
|
2009-04-13 17:41:00 +02:00
|
|
|
}
|