gjay: init at 0.3.2

+24
+22
pkgs/applications/audio/gjay/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, mpd_clientlib, dbus_glib, audacious, gtk, gsl 2 + , libaudclient }: 3 + 4 + stdenv.mkDerivation { 5 + name = "gjay-0.3.2"; 6 + 7 + src = fetchurl { 8 + url = "http://downloads.sourceforge.net/project/gjay/gjay-0.3.2.tar.gz"; 9 + sha256 = "1a1vv4r0vnxjdyl0jyv7gga3zfd5azxlwjm1l6hjrf71lb228zn8"; 10 + }; 11 + 12 + nativeBuildInputs = [ pkgconfig ]; 13 + 14 + buildInputs = [ mpd_clientlib dbus_glib audacious gtk gsl libaudclient ]; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Generates playlists such that each song sounds good following the previous song"; 18 + homepage = http://gjay.sourceforge.net/; 19 + license = licenses.gpl2; 20 + maintainers = with maintainers; [ pSub ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 11402 11402 fftw = fftwSinglePrec; 11403 11403 }; 11404 11404 11405 + gjay = callPackage ../applications/audio/gjay { }; 11406 + 11405 11407 photivo = callPackage ../applications/graphics/photivo { }; 11406 11408 11407 11409 wavesurfer = callPackage ../applications/misc/audio/wavesurfer { };