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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
843 B
Nix
Raw Normal View History

2021-02-12 11:31:12 +00:00
{ lib
, stdenv
, fetchurl
, pkg-config
, dbus-glib
, audacious
, gtk2
, gsl
, libaudclient
, libmpdclient
}:
2015-08-13 11:13:11 +00:00
2021-02-12 11:31:12 +00:00
stdenv.mkDerivation rec {
pname = "gjay";
version = "0.3.2";
2015-08-13 11:13:11 +00:00
src = fetchurl {
2021-02-12 11:31:12 +00:00
url = "mirror://sourceforge/project/gjay/${pname}-${version}.tar.gz";
2015-08-13 11:13:11 +00:00
sha256 = "1a1vv4r0vnxjdyl0jyv7gga3zfd5azxlwjm1l6hjrf71lb228zn8";
};
nativeBuildInputs = [ pkg-config ];
2015-08-13 11:13:11 +00:00
2021-02-12 11:31:12 +00:00
buildInputs = [
libmpdclient
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 = "https://gjay.sourceforge.net/";
2021-02-12 11:31:12 +00:00
license = licenses.gpl2Plus;
2015-08-13 11:13:11 +00:00
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
2024-02-11 02:19:15 +00:00
mainProgram = "gjay";
2015-08-13 11:13:11 +00:00
};
}