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.
28 lines
796 B
Nix
28 lines
796 B
Nix
{ lib, stdenv, fetchurl, pkg-config, gettext, gtk3, intltool,
|
|
wrapGAppsHook, libxml2, curl, mpd_clientlib, dbus-glib,
|
|
libsoup, avahi, taglib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.6";
|
|
pname = "ario";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ario-player/${pname}-${version}.tar.gz";
|
|
sha256 = "16nhfb3h5pc7flagfdz7xy0iq6kvgy6h4bfpi523i57rxvlfshhl";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config gettext intltool wrapGAppsHook ];
|
|
buildInputs = [
|
|
gtk3 libxml2 curl mpd_clientlib dbus-glib libsoup avahi taglib
|
|
];
|
|
|
|
meta = {
|
|
description = "GTK client for MPD (Music player daemon)";
|
|
homepage = "http://ario-player.sourceforge.net/";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.garrison ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|