2018-03-22 23:35:25 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, wrapGAppsHook, intltool, libgpod, curl, flac,
|
2019-01-19 06:28:06 +00:00
|
|
|
gnome3, gtk3, gettext, perlPackages, flex, libid3tag, gdl,
|
2019-05-22 11:03:39 +00:00
|
|
|
libvorbis, gdk-pixbuf }:
|
2009-04-13 15:41:10 +00:00
|
|
|
|
2014-09-08 14:02:22 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-11 14:09:13 +00:00
|
|
|
version = "2.1.5";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gtkpod";
|
2009-04-13 15:41:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/gtkpod/${pname}-${version}.tar.gz";
|
2015-08-11 14:09:13 +00:00
|
|
|
sha256 = "0xisrpx069f7bjkyc8vqxb4k0480jmx1wscqxr6cpq1qj6pchzd5";
|
2009-04-13 15:41:10 +00:00
|
|
|
};
|
2009-10-19 22:05:34 +00:00
|
|
|
|
2018-03-22 23:35:25 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ];
|
|
|
|
buildInputs = [
|
2018-10-12 22:56:15 +00:00
|
|
|
curl gettext
|
2019-05-22 11:03:39 +00:00
|
|
|
flex libgpod libid3tag flac libvorbis gtk3 gdk-pixbuf
|
2019-02-13 21:47:50 +00:00
|
|
|
gdl gnome3.adwaita-icon-theme gnome3.anjuta
|
2018-10-12 22:56:15 +00:00
|
|
|
] ++ (with perlPackages; [ perl XMLParser ]);
|
2009-10-19 22:05:34 +00:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's/which/type -P/' scripts/*.sh
|
|
|
|
'';
|
2009-04-13 15:41:10 +00:00
|
|
|
|
2014-07-30 22:27:48 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-07-30 22:40:05 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-13 15:41:10 +00:00
|
|
|
description = "GTK Manager for an Apple ipod";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://gtkpod.sourceforge.net";
|
2014-07-30 22:40:05 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.skeidel ];
|
2009-04-13 15:41:10 +00:00
|
|
|
};
|
|
|
|
}
|