2018-03-23 00:35:25 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, wrapGAppsHook, intltool, libgpod, curl, flac,
|
2019-01-19 07:28:06 +01:00
|
|
|
gnome3, gtk3, gettext, perlPackages, flex, libid3tag, gdl,
|
2018-07-21 02:44:44 +02:00
|
|
|
libvorbis, 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
|
|
|
|
2018-03-23 00:35:25 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ];
|
|
|
|
buildInputs = [
|
2018-10-13 00:56:15 +02:00
|
|
|
curl gettext
|
2018-03-23 00:35:25 +01:00
|
|
|
flex libgpod libid3tag flac libvorbis gtk3 gdk_pixbuf
|
2019-02-13 22:47:50 +01:00
|
|
|
gdl gnome3.adwaita-icon-theme gnome3.anjuta
|
2018-10-13 00:56:15 +02:00
|
|
|
] ++ (with perlPackages; [ perl XMLParser ]);
|
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
|
|
|
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
|
|
|
};
|
|
|
|
}
|