Merge pull request #305661 from kashw2/snapcast

snapcast: 0.27.0 -> 0.28.0; removed patch

authored by Franz Pletz and committed by GitHub 37640d6a 0c734b3b

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