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

26 lines
749 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkgconfig, mpd_clientlib, dbus-glib, audacious, gtk2, gsl
2015-08-13 11:13:11 +00:00
, libaudclient }:
stdenv.mkDerivation {
name = "gjay-0.3.2";
src = fetchurl {
url = "mirror://sourceforge/project/gjay/gjay-0.3.2.tar.gz";
2015-08-13 11:13:11 +00:00
sha256 = "1a1vv4r0vnxjdyl0jyv7gga3zfd5azxlwjm1l6hjrf71lb228zn8";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ mpd_clientlib dbus-glib audacious gtk2 gsl libaudclient ];
2015-08-13 11:13:11 +00:00
2016-08-03 20:02:44 +00:00
hardeningDisable = [ "format" ];
meta = with lib; {
2015-08-13 11:13:11 +00:00
description = "Generates playlists such that each song sounds good following the previous song";
homepage = "http://gjay.sourceforge.net/";
2015-08-13 11:13:11 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
2015-08-13 11:13:11 +00:00
};
}