9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
35 lines
991 B
Nix
35 lines
991 B
Nix
{ lib, stdenv, fetchurl, pkg-config, 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 = [ pkg-config 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 lib; {
|
|
description = "GTK Manager for an Apple ipod";
|
|
homepage = "http://gtkpod.sourceforge.net";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.skeidel ];
|
|
};
|
|
}
|