129 lines
2.8 KiB
Nix
129 lines
2.8 KiB
Nix
{ lib, config, clangStdenv, fetchFromGitHub
|
|
, autoconf
|
|
, automake
|
|
, libtool
|
|
, intltool
|
|
, pkg-config
|
|
, jansson
|
|
, swift-corelibs-libdispatch
|
|
# deadbeef can use either gtk2 or gtk3
|
|
, gtk2Support ? false, gtk2
|
|
, gtk3Support ? true, gtk3, gsettings-desktop-schemas, wrapGAppsHook
|
|
# input plugins
|
|
, vorbisSupport ? true, libvorbis
|
|
, mp123Support ? true, libmad
|
|
, flacSupport ? true, flac
|
|
, wavSupport ? true, libsndfile
|
|
, cdaSupport ? true, libcdio, libcddb
|
|
, aacSupport ? true, faad2
|
|
, opusSupport ? true, opusfile
|
|
, wavpackSupport ? false, wavpack
|
|
, ffmpegSupport ? false, ffmpeg
|
|
, apeSupport ? true, yasm
|
|
# misc plugins
|
|
, zipSupport ? true, libzip
|
|
, artworkSupport ? true, imlib2
|
|
, hotkeysSupport ? true, libX11
|
|
, osdSupport ? true, dbus
|
|
# output plugins
|
|
, alsaSupport ? true, alsa-lib
|
|
, pulseSupport ? config.pulseaudio or true, libpulseaudio
|
|
# effect plugins
|
|
, resamplerSupport ? true, libsamplerate
|
|
, overloadSupport ? true, zlib
|
|
# transports
|
|
, remoteSupport ? true, curl
|
|
}:
|
|
|
|
assert gtk2Support || gtk3Support;
|
|
|
|
let
|
|
inherit (lib) optionals;
|
|
|
|
version = "1.9.2";
|
|
in clangStdenv.mkDerivation {
|
|
pname = "deadbeef";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DeaDBeeF-Player";
|
|
repo = "deadbeef";
|
|
fetchSubmodules = true;
|
|
rev = version;
|
|
sha256 = "sha256-rlw7s5OUQ9DT6Ru9WieOKUDBqtOvaPE05pg3bN1NQCU=";
|
|
};
|
|
|
|
buildInputs = [
|
|
jansson
|
|
swift-corelibs-libdispatch
|
|
] ++ optionals gtk2Support [
|
|
gtk2
|
|
] ++ optionals gtk3Support [
|
|
gtk3
|
|
gsettings-desktop-schemas
|
|
] ++ optionals vorbisSupport [
|
|
libvorbis
|
|
] ++ optionals mp123Support [
|
|
libmad
|
|
] ++ optionals flacSupport [
|
|
flac
|
|
] ++ optionals wavSupport [
|
|
libsndfile
|
|
] ++ optionals cdaSupport [
|
|
libcdio
|
|
libcddb
|
|
] ++ optionals aacSupport [
|
|
faad2
|
|
] ++ optionals opusSupport [
|
|
opusfile
|
|
] ++ optionals zipSupport [
|
|
libzip
|
|
] ++ optionals ffmpegSupport [
|
|
ffmpeg
|
|
] ++ optionals apeSupport [
|
|
yasm
|
|
] ++ optionals artworkSupport [
|
|
imlib2
|
|
] ++ optionals hotkeysSupport [
|
|
libX11
|
|
] ++ optionals osdSupport [
|
|
dbus
|
|
] ++ optionals alsaSupport [
|
|
alsa-lib
|
|
] ++ optionals pulseSupport [
|
|
libpulseaudio
|
|
] ++ optionals resamplerSupport [
|
|
libsamplerate
|
|
] ++ optionals overloadSupport [
|
|
zlib
|
|
] ++ optionals wavpackSupport [
|
|
wavpack
|
|
] ++ optionals remoteSupport [
|
|
curl
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
intltool
|
|
libtool
|
|
pkg-config
|
|
] ++ optionals gtk3Support [
|
|
wrapGAppsHook
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Ultimate Music Player for GNU/Linux";
|
|
homepage = "http://deadbeef.sourceforge.net/";
|
|
license = licenses.gpl2;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
maintainers = [ maintainers.abbradar ];
|
|
};
|
|
}
|