2014-07-31 00:27:48 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, makeWrapper, intltool, libgpod, curl, flac,
|
2014-09-08 16:02:22 +02:00
|
|
|
gnome, gtk3, glib, gettext, perl, perlXMLParser, flex, libglade, libid3tag,
|
2014-07-31 00:27:48 +02:00
|
|
|
libvorbis, hicolor_icon_theme, gdk_pixbuf }:
|
2009-04-13 17:41:10 +02:00
|
|
|
|
2014-09-08 16:02:22 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-11 16:09:13 +02:00
|
|
|
version = "2.1.5";
|
2014-07-31 00:27:48 +02:00
|
|
|
name = "gtkpod-${version}";
|
2009-04-13 17:41:10 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-07-31 00:27:48 +02:00
|
|
|
url = "mirror://sourceforge/gtkpod/${name}.tar.gz";
|
2015-08-11 16:09:13 +02:00
|
|
|
sha256 = "0xisrpx069f7bjkyc8vqxb4k0480jmx1wscqxr6cpq1qj6pchzd5";
|
2009-04-13 17:41:10 +02:00
|
|
|
};
|
2009-10-20 00:05:34 +02:00
|
|
|
|
2014-07-31 00:27:48 +02:00
|
|
|
propagatedUserEnvPkgs = [ gnome.gnome_themes_standard ];
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig makeWrapper intltool curl gettext perl perlXMLParser
|
|
|
|
flex libgpod libid3tag flac libvorbis gtk3 gdk_pixbuf libglade gnome.anjuta
|
2015-05-20 20:09:15 +02:00
|
|
|
gnome.gdl gnome.defaultIconTheme
|
2014-07-31 00:27:48 +02:00
|
|
|
hicolor_icon_theme ];
|
2009-10-20 00:05:34 +02:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's/which/type -P/' scripts/*.sh
|
|
|
|
'';
|
2009-04-13 17:41:10 +02:00
|
|
|
|
2014-07-31 00:27:48 +02:00
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/bin/gtkpod" \
|
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
|
|
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gnome.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-07-31 00:40:05 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-13 17:41:10 +02:00
|
|
|
description = "GTK Manager for an Apple ipod";
|
|
|
|
homepage = http://gtkpod.sourceforge.net;
|
2014-07-31 00:40:05 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.skeidel ];
|
2009-04-13 17:41:10 +02:00
|
|
|
};
|
|
|
|
}
|