ario: mpd_clientlib -> libmpdclient
This commit is contained in:
parent
f53698c8df
commit
12a2c647bc
@ -1,11 +1,23 @@
|
|||||||
{ lib, stdenv, fetchurl, pkg-config, gettext, gtk3, intltool,
|
{ lib
|
||||||
wrapGAppsHook, libxml2, curl, mpd_clientlib, dbus-glib,
|
, stdenv
|
||||||
libsoup, avahi, taglib
|
, fetchurl
|
||||||
}:
|
, pkg-config
|
||||||
|
, intltool
|
||||||
|
, avahi
|
||||||
|
, curl
|
||||||
|
, dbus-glib
|
||||||
|
, gettext
|
||||||
|
, gtk3
|
||||||
|
, libmpdclient
|
||||||
|
, libsoup
|
||||||
|
, libxml2
|
||||||
|
, taglib
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.6";
|
|
||||||
pname = "ario";
|
pname = "ario";
|
||||||
|
version = "1.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/ario-player/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/ario-player/${pname}-${version}.tar.gz";
|
||||||
@ -14,14 +26,21 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkg-config gettext intltool wrapGAppsHook ];
|
nativeBuildInputs = [ pkg-config gettext intltool wrapGAppsHook ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk3 libxml2 curl mpd_clientlib dbus-glib libsoup avahi taglib
|
avahi
|
||||||
|
curl
|
||||||
|
dbus-glib
|
||||||
|
gtk3
|
||||||
|
libmpdclient
|
||||||
|
libsoup
|
||||||
|
libxml2
|
||||||
|
taglib
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "GTK client for MPD (Music player daemon)";
|
description = "GTK client for MPD (Music player daemon)";
|
||||||
homepage = "http://ario-player.sourceforge.net/";
|
homepage = "http://ario-player.sourceforge.net/";
|
||||||
license = lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [ lib.maintainers.garrison ];
|
maintainers = [ maintainers.garrison ];
|
||||||
platforms = lib.platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user