Skip to content

Commit

Permalink
libopus: add patch to fix CVE-2017-0381
Browse files Browse the repository at this point in the history
(cherry picked from commit 140d135)
  • Loading branch information
fpletz committed Jan 21, 2017
1 parent 1433871 commit ee4fc9c
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.2";
Expand All @@ -11,6 +12,13 @@ stdenv.mkDerivation rec {
sha256 = "1z87x5c5x951lhnm70iqr2gqn15wns5cqsw8nnkvl48jwdw00a8f";
};

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 ee4fc9c

Please sign in to comment.