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
28
# output plugins
29
29
, alsaSupport ? true, alsa-lib
30
30
, pulseSupport ? config.pulseaudio or true, libpulseaudio
31
31
+
, pipewireSupport ? true, pipewire
31
32
# effect plugins
32
33
, resamplerSupport ? true, libsamplerate
33
34
, overloadSupport ? true, zlib
···
40
41
let
41
42
inherit (lib) optionals;
42
43
43
43
-
version = "1.9.4";
44
44
+
version = "1.9.5";
44
45
in clangStdenv.mkDerivation {
45
46
pname = "deadbeef";
46
47
inherit version;
···
50
51
repo = "deadbeef";
51
52
fetchSubmodules = true;
52
53
rev = version;
53
53
-
sha256 = "sha256-ow+Aw/lp+oe9GhbOWM7XcX/tJjfAAu7KOUY1us7+f84=";
54
54
+
hash = "sha256-dSSIaJxHYUVOmuJN2t5UZSC3ZP5732/qVXSZAuWYr0Q=";
54
55
};
55
56
56
57
buildInputs = [
···
92
93
alsa-lib
93
94
] ++ optionals pulseSupport [
94
95
libpulseaudio
96
96
+
] ++ optionals pipewireSupport [
97
97
+
pipewire
95
98
] ++ optionals resamplerSupport [
96
99
libsamplerate
97
100
] ++ optionals overloadSupport [
···
121
124
meta = with lib; {
122
125
description = "Ultimate Music Player for GNU/Linux";
123
126
homepage = "http://deadbeef.sourceforge.net/";
127
127
+
downloadPage = "https://github.com/DeaDBeeF-Player/deadbeef";
124
128
license = licenses.gpl2;
125
129
platforms = [ "x86_64-linux" "i686-linux" ];
126
130
maintainers = [ maintainers.abbradar ];