mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
1,010 B
Nix
29 lines
1,010 B
Nix
{stdenv, fetchurl, gettext, perl, perlXMLParser, intltool, pkgconfig, glib,
|
|
libxml2, sqlite, libusb1, zlib, sg3_utils, gdk_pixbuf, taglib,
|
|
libimobiledevice, python, pygobject, mutagen }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libgpod-0.8.3";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gtkpod/${name}.tar.bz2";
|
|
sha256 = "0pcmgv1ra0ymv73mlj4qxzgyir026z9jpl5s5bkg35afs1cpk2k3";
|
|
};
|
|
|
|
preConfigure = "configureFlagsArray=( --with-udev-dir=$out/lib/udev )";
|
|
configureFlags = "--without-hal --enable-udev";
|
|
|
|
propagatedBuildInputs = [ glib libxml2 sqlite zlib sg3_utils
|
|
gdk_pixbuf taglib libimobiledevice python pygobject mutagen ];
|
|
|
|
nativeBuildInputs = [ gettext perlXMLParser intltool pkgconfig perl
|
|
libimobiledevice.swig ];
|
|
|
|
meta = {
|
|
homepage = http://gtkpod.sourceforge.net/;
|
|
description = "Library used by gtkpod to access the contents of an ipod";
|
|
license = "LGPL";
|
|
platforms = stdenv.lib.platforms.gnu;
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
};
|
|
}
|