libopus: add patch to fix CVE-2017-0381

This commit is contained in:
Franz Pletz 2017-01-21 07:57:15 +01:00
parent 72a002f9d6
commit 140d135ee2
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,4 +1,5 @@
{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? true }:
{ stdenv, fetchurl, fetchpatch
, fixedPoint ? false, withCustomModes ? true }:
let
version = "1.1.3";
@ -11,6 +12,13 @@ stdenv.mkDerivation rec {
sha256 = "0cxnd7pjxbgh6l3cbzsw29phpr5cq28fikfhjlp1hc3y5s0gxdjq";
};
patches = [
(fetchpatch { # CVE-2017-0381
url = "https://github.com/xiph/opus/commit/79e8f527b0344b0897a65be35e77f7885bd99409.patch";
sha256 = "0clm4ixqkaj0a6i5rhaqfv3nnxyk33b2b8xlm7vyfd0y8kbh996q";
})
];
outputs = [ "out" "dev" ];
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"