ario: mpd_clientlib -> libmpdclient

+29 -10
+29 -10
pkgs/applications/audio/ario/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, gettext, gtk3, intltool, 2 - wrapGAppsHook, libxml2, curl, mpd_clientlib, dbus-glib, 3 - libsoup, avahi, taglib 4 - }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , pkg-config 5 + , intltool 6 + , avahi 7 + , curl 8 + , dbus-glib 9 + , gettext 10 + , gtk3 11 + , libmpdclient 12 + , libsoup 13 + , libxml2 14 + , taglib 15 + , wrapGAppsHook 16 + }: 5 17 6 18 stdenv.mkDerivation rec { 7 - version = "1.6"; 8 19 pname = "ario"; 20 + version = "1.6"; 9 21 10 22 src = fetchurl { 11 23 url = "mirror://sourceforge/ario-player/${pname}-${version}.tar.gz"; ··· 14 26 15 27 nativeBuildInputs = [ pkg-config gettext intltool wrapGAppsHook ]; 16 28 buildInputs = [ 17 - gtk3 libxml2 curl mpd_clientlib dbus-glib libsoup avahi taglib 29 + avahi 30 + curl 31 + dbus-glib 32 + gtk3 33 + libmpdclient 34 + libsoup 35 + libxml2 36 + taglib 18 37 ]; 19 38 20 - meta = { 39 + meta = with lib; { 21 40 description = "GTK client for MPD (Music player daemon)"; 22 41 homepage = "http://ario-player.sourceforge.net/"; 23 - license = lib.licenses.gpl2Plus; 24 - maintainers = [ lib.maintainers.garrison ]; 25 - platforms = lib.platforms.all; 42 + license = licenses.gpl2Plus; 43 + maintainers = [ maintainers.garrison ]; 44 + platforms = platforms.all; 26 45 }; 27 46 }