Skip to content

Commit

Permalink
libopus: add patch to fix CVE-2017-0381
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed Jan 21, 2017
1 parent 72a002f commit 140d135
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/development/libraries/libopus/default.nix
@@ -1,4 +1,5 @@
{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? true }:
{ stdenv, fetchurl, fetchpatch
, fixedPoint ? false, withCustomModes ? true }:

let
version = "1.1.3";
Expand All @@ -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"
Expand Down

0 comments on commit 140d135

Please sign in to comment.