From 5f3dca9303de83c63579b5393ae6a1f8213bb1f3 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 13 Aug 2015 13:13:11 +0200 Subject: gjay: init at 0.3.2 --- pkgs/applications/audio/gjay/default.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkgs/applications/audio/gjay/default.nix (limited to 'pkgs/applications/audio/gjay') diff --git a/pkgs/applications/audio/gjay/default.nix b/pkgs/applications/audio/gjay/default.nix new file mode 100644 index 000000000000..9f023f34291d --- /dev/null +++ b/pkgs/applications/audio/gjay/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pkgconfig, mpd_clientlib, dbus_glib, audacious, gtk, gsl +, libaudclient }: + +stdenv.mkDerivation { + name = "gjay-0.3.2"; + + src = fetchurl { + url = "http://downloads.sourceforge.net/project/gjay/gjay-0.3.2.tar.gz"; + sha256 = "1a1vv4r0vnxjdyl0jyv7gga3zfd5azxlwjm1l6hjrf71lb228zn8"; + }; + + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ mpd_clientlib dbus_glib audacious gtk gsl libaudclient ]; + + meta = with stdenv.lib; { + description = "Generates playlists such that each song sounds good following the previous song"; + homepage = http://gjay.sourceforge.net/; + license = licenses.gpl2; + maintainers = with maintainers; [ pSub ]; + }; +} -- cgit 1.4.1