We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ba03e6 commit 055f560Copy full SHA for 055f560
pkgs/applications/audio/snapcast/default.nix
@@ -20,17 +20,18 @@
20
pulseaudioSupport ? false,
21
libpulseaudio,
22
nixosTests,
23
+ openssl,
24
}:
25
26
stdenv.mkDerivation rec {
27
pname = "snapcast";
- version = "0.29.0";
28
+ version = "0.30.0";
29
30
src = fetchFromGitHub {
31
owner = "badaix";
32
repo = "snapcast";
33
rev = "v${version}";
- hash = "sha256-FWOGBXYWLHHZhvC5/BpkDd70ZupzALZ3ks3qTcrtwKQ=";
34
+ hash = "sha256-EJgpZz4PnXfge0rkVH1F7cah+i9AvDJVSUVqL7qChDM=";
35
};
36
37
nativeBuildInputs = [
@@ -51,6 +52,7 @@ stdenv.mkDerivation rec {
51
52
aixlog
53
popl
54
soxr
55
+ openssl
56
]
57
++ lib.optional pulseaudioSupport libpulseaudio
58
++ lib.optional stdenv.hostPlatform.isLinux alsa-lib
0 commit comments