Merge pull request #25973 from gentoofreak/feature/libopus-1.1.4

libopus: 1.1.3 -> 1.1.4
This commit is contained in:
Franz Pletz 2017-05-22 17:19:19 +02:00 committed by GitHub
commit 933ab0cd5b

View file

@ -2,23 +2,16 @@
, fixedPoint ? false, withCustomModes ? true }:
let
version = "1.1.3";
version = "1.1.4";
in
stdenv.mkDerivation rec {
name = "libopus-${version}";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
sha256 = "0cxnd7pjxbgh6l3cbzsw29phpr5cq28fikfhjlp1hc3y5s0gxdjq";
sha256 = "14l6kpapmcnvl7p9hrmbqcnzj13zfzyppyc9a5kd4788h2rvc8li";
};
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"