2017-01-21 06:57:15 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch
|
|
|
|
, fixedPoint ? false, withCustomModes ? true }:
|
2012-09-25 18:01:29 +00:00
|
|
|
|
2013-12-09 20:07:56 +00:00
|
|
|
let
|
2016-09-10 20:49:58 +00:00
|
|
|
version = "1.1.3";
|
2013-12-09 20:07:56 +00:00
|
|
|
in
|
2012-09-25 18:01:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-09 20:07:56 +00:00
|
|
|
name = "libopus-${version}";
|
|
|
|
|
2012-09-25 18:01:29 +00:00
|
|
|
src = fetchurl {
|
2013-12-09 20:07:56 +00:00
|
|
|
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
|
2016-09-10 20:49:58 +00:00
|
|
|
sha256 = "0cxnd7pjxbgh6l3cbzsw29phpr5cq28fikfhjlp1hc3y5s0gxdjq";
|
2012-09-25 18:01:29 +00:00
|
|
|
};
|
|
|
|
|
2017-01-21 06:57:15 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch { # CVE-2017-0381
|
|
|
|
url = "https://github.com/xiph/opus/commit/79e8f527b0344b0897a65be35e77f7885bd99409.patch";
|
|
|
|
sha256 = "0clm4ixqkaj0a6i5rhaqfv3nnxyk33b2b8xlm7vyfd0y8kbh996q";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-08 09:25:09 +00:00
|
|
|
|
2014-03-27 14:41:56 +00:00
|
|
|
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
|
|
|
|
++ stdenv.lib.optional withCustomModes "--enable-custom-modes";
|
2012-09-25 18:01:29 +00:00
|
|
|
|
2013-12-09 20:07:56 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2015-04-26 02:41:15 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-09-25 18:01:29 +00:00
|
|
|
description = "Open, royalty-free, highly versatile audio codec";
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2012-09-25 18:01:29 +00:00
|
|
|
homepage = http://www.opus-codec.org/;
|
2015-04-26 02:41:15 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2012-09-25 18:01:29 +00:00
|
|
|
};
|
|
|
|
}
|