tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
deadbeef: 1.9.4 -> 1.9.5
zendo
2 years ago
6024b587
351cec5d
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
deadbeef
default.nix
+6
-2
pkgs/applications/audio/deadbeef/default.nix
···
28
# output plugins
29
, alsaSupport ? true, alsa-lib
30
, pulseSupport ? config.pulseaudio or true, libpulseaudio
0
31
# effect plugins
32
, resamplerSupport ? true, libsamplerate
33
, overloadSupport ? true, zlib
···
40
let
41
inherit (lib) optionals;
42
43
-
version = "1.9.4";
44
in clangStdenv.mkDerivation {
45
pname = "deadbeef";
46
inherit version;
···
50
repo = "deadbeef";
51
fetchSubmodules = true;
52
rev = version;
53
-
sha256 = "sha256-ow+Aw/lp+oe9GhbOWM7XcX/tJjfAAu7KOUY1us7+f84=";
54
};
55
56
buildInputs = [
···
92
alsa-lib
93
] ++ optionals pulseSupport [
94
libpulseaudio
0
0
95
] ++ optionals resamplerSupport [
96
libsamplerate
97
] ++ optionals overloadSupport [
···
121
meta = with lib; {
122
description = "Ultimate Music Player for GNU/Linux";
123
homepage = "http://deadbeef.sourceforge.net/";
0
124
license = licenses.gpl2;
125
platforms = [ "x86_64-linux" "i686-linux" ];
126
maintainers = [ maintainers.abbradar ];
···
28
# output plugins
29
, alsaSupport ? true, alsa-lib
30
, pulseSupport ? config.pulseaudio or true, libpulseaudio
31
+
, pipewireSupport ? true, pipewire
32
# effect plugins
33
, resamplerSupport ? true, libsamplerate
34
, overloadSupport ? true, zlib
···
41
let
42
inherit (lib) optionals;
43
44
+
version = "1.9.5";
45
in clangStdenv.mkDerivation {
46
pname = "deadbeef";
47
inherit version;
···
51
repo = "deadbeef";
52
fetchSubmodules = true;
53
rev = version;
54
+
hash = "sha256-dSSIaJxHYUVOmuJN2t5UZSC3ZP5732/qVXSZAuWYr0Q=";
55
};
56
57
buildInputs = [
···
93
alsa-lib
94
] ++ optionals pulseSupport [
95
libpulseaudio
96
+
] ++ optionals pipewireSupport [
97
+
pipewire
98
] ++ optionals resamplerSupport [
99
libsamplerate
100
] ++ optionals overloadSupport [
···
124
meta = with lib; {
125
description = "Ultimate Music Player for GNU/Linux";
126
homepage = "http://deadbeef.sourceforge.net/";
127
+
downloadPage = "https://github.com/DeaDBeeF-Player/deadbeef";
128
license = licenses.gpl2;
129
platforms = [ "x86_64-linux" "i686-linux" ];
130
maintainers = [ maintainers.abbradar ];