Merge pull request #6800 from garrison/ario

Package ario

lethalman c812ded1 1099ea2d

+71
+29
pkgs/applications/audio/ario/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, gettext, gtk2, expat, intltool, libgcrypt, 2 + libunique, gnutls, libxml2, curl, mpd_clientlib, dbus_glib, libnotify, 3 + libsoup, avahi, taglib 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + version = "1.5.1"; 8 + name = "ario-${version}"; 9 + 10 + src = fetchurl { 11 + url = "mirror://sourceforge/ario-player/${name}.tar.gz"; 12 + sha256 = "07n97618jv1ilxnm5c6qj9zjz0imw3p304mn4hjbjkk3p0d2hc88"; 13 + }; 14 + 15 + patches = [ ./glib-single-include.patch ]; 16 + 17 + buildInputs = [ 18 + pkgconfig gettext gtk2 expat intltool libgcrypt libunique gnutls 19 + libxml2 curl mpd_clientlib dbus_glib libnotify libsoup avahi taglib 20 + ]; 21 + 22 + meta = { 23 + description = "GTK2 client for MPD (Music player daemon)"; 24 + homepage = "http://ario-player.sourceforge.net/"; 25 + license = stdenv.lib.licenses.gpl2Plus; 26 + maintainers = [ stdenv.lib.maintainers.garrison ]; 27 + platforms = stdenv.lib.platforms.all; 28 + }; 29 + }
+40
pkgs/applications/audio/ario/glib-single-include.patch
··· 1 + From: Michael Biebl <biebl@debian.org> 2 + Origin: vendor 3 + Bug-Debian: http://bugs.debian.org/665506 4 + Subject: Including individual glib headers no longer supported 5 + 6 + --- a/src/ario-profiles.h 7 + +++ b/src/ario-profiles.h 8 + @@ -20,7 +20,7 @@ 9 + #ifndef __ARIO_PROFILES_H 10 + #define __ARIO_PROFILES_H 11 + 12 + -#include <glib/gslist.h> 13 + +#include <glib.h> 14 + #include "servers/ario-server.h" 15 + 16 + G_BEGIN_DECLS 17 + --- a/src/plugins/ario-plugin-info.c 18 + +++ b/src/plugins/ario-plugin-info.c 19 + @@ -27,7 +27,7 @@ 20 + 21 + #include <string.h> 22 + #include <glib/gi18n.h> 23 + -#include <glib/gkeyfile.h> 24 + +#include <glib.h> 25 + 26 + #include "plugins/ario-plugin-info-priv.h" 27 + #include "ario-debug.h" 28 + --- a/src/ario-util.h 29 + +++ b/src/ario-util.h 30 + @@ -18,8 +18,8 @@ 31 + */ 32 + 33 + #include "servers/ario-server.h" 34 + -#include "glib/gslist.h" 35 + -#include "gdk/gdkpixbuf.h" 36 + +#include <glib.h> 37 + +#include <gdk/gdkpixbuf.h> 38 + 39 + /* Number of covers used to generate the drag & drop image */ 40 + #define MAX_COVERS_IN_DRAG 3
+2
pkgs/top-level/all-packages.nix
··· 9771 9771 inherit (gnome) libgnomecanvas libgnomecanvasmm; 9772 9772 }); 9773 9773 9774 + ario = callPackage ../applications/audio/ario { }; 9775 + 9774 9776 arora = callPackage ../applications/networking/browsers/arora { }; 9775 9777 9776 9778 atom = callPackage ../applications/editors/atom {