nixpkgs/pkgs/applications/audio/gtkpod/default.nix

35 lines
989 B
Nix
Raw Normal View History

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 }:
stdenv.mkDerivation rec {
version = "2.1.5";
pname = "gtkpod";
src = fetchurl {
url = "mirror://sourceforge/gtkpod/${pname}-${version}.tar.gz";
sha256 = "0xisrpx069f7bjkyc8vqxb4k0480jmx1wscqxr6cpq1qj6pchzd5";
};
2018-03-22 23:35:25 +00:00
nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ];
buildInputs = [
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
] ++ (with perlPackages; [ perl XMLParser ]);
patchPhase = ''
sed -i 's/which/type -P/' scripts/*.sh
'';
2014-07-30 22:27:48 +00:00
enableParallelBuilding = true;
2014-07-30 22:40:05 +00:00
meta = with stdenv.lib; {
description = "GTK Manager for an Apple ipod";
homepage = http://gtkpod.sourceforge.net;
2014-07-30 22:40:05 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.skeidel ];
};
}