tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
snapcast: 0.27.0 -> 0.28.0
kashw2
2 years ago
5c4361ae
f2c7ecb8
+3
-14
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
snapcast
default.nix
+3
-14
pkgs/applications/audio/snapcast/default.nix
···
1
1
-
{ stdenv, lib, fetchFromGitHub, fetchpatch, cmake, pkg-config
1
1
+
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config
2
2
, alsa-lib, asio, avahi, boost179, flac, libogg, libvorbis, libopus, soxr
3
3
, IOKit, AudioToolbox
4
4
, aixlog, popl
5
5
, pulseaudioSupport ? false, libpulseaudio
6
6
, nixosTests }:
7
7
8
8
-
assert pulseaudioSupport -> libpulseaudio != null;
9
9
-
10
8
stdenv.mkDerivation rec {
11
9
pname = "snapcast";
12
12
-
version = "0.27.0";
10
10
+
version = "0.28.0";
13
11
14
12
src = fetchFromGitHub {
15
13
owner = "badaix";
16
14
repo = "snapcast";
17
15
rev = "v${version}";
18
18
-
sha256 = "sha256-dlK1xQQqst4VQjioC7MZzqXwMC+JfqtvnD5lrOqGhYI=";
16
16
+
sha256 = "sha256-XxpiLojs1TI3qM7yXS+OPcHKo6pLcfJ+Eop7GjQ4HQw=";
19
17
};
20
20
-
21
21
-
patches = [
22
22
-
# Can be removed with next release after 0.27.0
23
23
-
(fetchpatch {
24
24
-
name = "include-cstdint.patch";
25
25
-
url = "https://github.com/badaix/snapcast/commit/481f08199ca31c60c9a3475f1064e6b06a503d12.patch";
26
26
-
hash = "sha256-klpvmBpBAlBMtcgnNfW6X6vDbJFnOuOsPUDXcNf5tGc=";
27
27
-
})
28
28
-
];
29
18
30
19
nativeBuildInputs = [ cmake pkg-config ];
31
20
# snapcast also supports building against tremor but as we have libogg, that's