lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

libopus: 1.4 -> 1.5.1

Changelog: https://gitlab.xiph.org/xiph/opus/-/releases/v1.5.1

+6 -19
+2 -8
pkgs/development/libraries/libopus/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "libopus"; 19 - version = "1.4"; 19 + version = "1.5.1"; 20 20 21 21 src = fetchurl { 22 22 url = "https://downloads.xiph.org/releases/opus/opus-${version}.tar.gz"; 23 - sha256 = "sha256-ybMrQlO+WuY9H/Fu6ga5S18PKVG3oCrO71jjo85JxR8="; 23 + hash = "sha256-uEYQlZuNQXthGqEqIlZeCjcyCXxjidGQmNhEVD40D4U="; 24 24 }; 25 25 26 26 patches = [ 27 27 ./fix-pkg-config-paths.patch 28 28 # Some tests time out easily on slower machines 29 29 ./test-timeout.patch 30 - # Fix meson build for arm64. Remove with next release 31 - # https://gitlab.xiph.org/xiph/opus/-/merge_requests/59 32 - (fetchpatch { 33 - url = "https://gitlab.xiph.org/xiph/opus/-/commit/20c032d27c59d65b19b8ffbb2608e5282fe817eb.patch"; 34 - hash = "sha256-2pX+0ay5PTyHL2plameBX2L1Q4aTx7V7RGiTdhNIuE4="; 35 - }) 36 30 ]; 37 31 38 32 postPatch = ''
+4 -11
pkgs/development/libraries/libopus/test-timeout.patch
··· 1 - diff --git a/tests/meson.build b/tests/meson.build 2 - index 5f3ac9d..74b2de7 100644 3 1 --- a/tests/meson.build 4 2 +++ b/tests/meson.build 5 - @@ -1,8 +1,8 @@ 3 + @@ -1,6 +1,5 @@ 6 4 # Tests that link to libopus 7 5 opus_tests = [ 8 6 - ['test_opus_api'], 9 - - ['test_opus_decode', [], 60], 10 - - ['test_opus_encode', 'opus_encode_regressions.c', 120], 11 - + ['test_opus_api', [], 60], 12 - + ['test_opus_decode', [], 120], 13 - + ['test_opus_encode', 'opus_encode_regressions.c', 240], 14 - ['test_opus_padding'], 15 - ['test_opus_projection'], 16 - ] 7 + ['test_opus_decode', [], 120], 8 + ['test_opus_encode', 'opus_encode_regressions.c', 240], 9 + ['test_opus_extensions', [], 120],