46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
35 lines
989 B
Nix
35 lines
989 B
Nix
{ stdenv, fetchurl, pkgconfig, wrapGAppsHook, intltool, libgpod, curl, flac,
|
|
gnome3, gtk3, gettext, perlPackages, flex, libid3tag, gdl,
|
|
libvorbis, gdk-pixbuf }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.1.5";
|
|
pname = "gtkpod";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gtkpod/${pname}-${version}.tar.gz";
|
|
sha256 = "0xisrpx069f7bjkyc8vqxb4k0480jmx1wscqxr6cpq1qj6pchzd5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ];
|
|
buildInputs = [
|
|
curl gettext
|
|
flex libgpod libid3tag flac libvorbis gtk3 gdk-pixbuf
|
|
gdl gnome3.adwaita-icon-theme gnome3.anjuta
|
|
] ++ (with perlPackages; [ perl XMLParser ]);
|
|
|
|
patchPhase = ''
|
|
sed -i 's/which/type -P/' scripts/*.sh
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GTK Manager for an Apple ipod";
|
|
homepage = http://gtkpod.sourceforge.net;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.skeidel ];
|
|
};
|
|
}
|