libopus: add patch to fix CVE-2017-0381
This commit is contained in:
parent
72a002f9d6
commit
140d135ee2
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? true }:
|
{ stdenv, fetchurl, fetchpatch
|
||||||
|
, fixedPoint ? false, withCustomModes ? true }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "1.1.3";
|
version = "1.1.3";
|
||||||
@ -11,6 +12,13 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0cxnd7pjxbgh6l3cbzsw29phpr5cq28fikfhjlp1hc3y5s0gxdjq";
|
sha256 = "0cxnd7pjxbgh6l3cbzsw29phpr5cq28fikfhjlp1hc3y5s0gxdjq";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch { # CVE-2017-0381
|
||||||
|
url = "https://github.com/xiph/opus/commit/79e8f527b0344b0897a65be35e77f7885bd99409.patch";
|
||||||
|
sha256 = "0clm4ixqkaj0a6i5rhaqfv3nnxyk33b2b8xlm7vyfd0y8kbh996q";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
|
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
|
||||||
|
Loading…
Reference in New Issue
Block a user