summary refs log tree commit diff
path: root/pkgs/applications/audio/ario/default.nix
blob: 99a09e7ee330028918773ab239544c69b66f5699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, pkgconfig, 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 = [ pkgconfig 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 = stdenv.lib.licenses.gpl2Plus;
    maintainers = [ stdenv.lib.maintainers.garrison ];
    platforms = stdenv.lib.platforms.all;
  };
}