speex: 1.2.0 -> 1.2.1

https://github.com/xiph/speex/releases/tag/Speex-1.2.1

+3 -11
+3 -11
pkgs/development/libraries/speex/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, autoreconfHook, pkg-config, fftw, speexdsp }: 1 + { lib, stdenv, fetchurl, autoreconfHook, pkg-config, fftw, speexdsp }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "speex"; 5 - version = "1.2.0"; 5 + version = "1.2.1"; 6 6 7 7 src = fetchurl { 8 8 url = "http://downloads.us.xiph.org/releases/speex/speex-${version}.tar.gz"; 9 - sha256 = "150047wnllz4r94whb9r73l5qf0z5z3rlhy98bawfbblmkq8mbpa"; 9 + sha256 = "sha256-S0TU8rOKNwotmKeDKf78VqDPk9HBvnACkhe6rmYo/uo="; 10 10 }; 11 11 12 12 postPatch = '' 13 13 sed -i '/AC_CONFIG_MACRO_DIR/i PKG_PROG_PKG_CONFIG' configure.ac 14 14 ''; 15 - 16 - patches = [ 17 - (fetchpatch { 18 - name = "CVE-2020-23903.patch"; 19 - url = "https://github.com/xiph/speex/commit/870ff845b32f314aec0036641ffe18aba4916887.patch"; 20 - sha256 = "sha256-uEMDhDTw/LIWNPPCXW6kF+udBmNO88G/jJTojAA9fs8="; 21 - }) 22 - ]; 23 15 24 16 outputs = [ "out" "dev" "doc" ]; 25 17