nixpkgs/pkgs/applications/audio/ario/default.nix

28 lines
810 B
Nix
Raw Normal View History

2018-11-18 01:05:11 +01:00
{ stdenv, fetchurl, pkgconfig, gettext, gtk3, intltool,
wrapGAppsHook, libxml2, curl, mpd_clientlib, dbus-glib,
2015-03-14 07:46:17 +01:00
libsoup, avahi, taglib
}:
stdenv.mkDerivation rec {
2018-11-18 01:05:11 +01:00
version = "1.6";
pname = "ario";
2015-03-14 07:46:17 +01:00
src = fetchurl {
url = "mirror://sourceforge/ario-player/${pname}-${version}.tar.gz";
2018-11-18 01:05:11 +01:00
sha256 = "16nhfb3h5pc7flagfdz7xy0iq6kvgy6h4bfpi523i57rxvlfshhl";
2015-03-14 07:46:17 +01:00
};
2018-11-18 01:05:11 +01:00
nativeBuildInputs = [ pkgconfig gettext intltool wrapGAppsHook ];
2015-03-14 07:46:17 +01:00
buildInputs = [
2018-11-18 01:05:11 +01:00
gtk3 libxml2 curl mpd_clientlib dbus-glib libsoup avahi taglib
2015-03-14 07:46:17 +01:00
];
meta = {
2018-11-18 01:05:11 +01:00
description = "GTK client for MPD (Music player daemon)";
homepage = "http://ario-player.sourceforge.net/";
2015-03-14 07:46:17 +01:00
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.garrison ];
platforms = stdenv.lib.platforms.all;
};
}