2017-01-21 07:57:15 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch
|
|
|
|
, fixedPoint ? false, withCustomModes ? true }:
|
2012-09-25 20:01:29 +02:00
|
|
|
|
2013-12-09 21:07:56 +01:00
|
|
|
let
|
2017-06-28 11:53:05 +02:00
|
|
|
version = "1.2.1";
|
2013-12-09 21:07:56 +01:00
|
|
|
in
|
2012-09-25 20:01:29 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-09 21:07:56 +01:00
|
|
|
name = "libopus-${version}";
|
|
|
|
|
2012-09-25 20:01:29 +02:00
|
|
|
src = fetchurl {
|
2017-06-21 18:27:01 +02:00
|
|
|
url = "https://archive.mozilla.org/pub/opus/opus-${version}.tar.gz";
|
2017-06-28 11:53:05 +02:00
|
|
|
sha256 = "0ch7yzgg4bn1g36bpjsfrgs4n19c84d7wpdida6yzifrrhwx7byg";
|
2012-09-25 20:01:29 +02:00
|
|
|
};
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-08 11:25:09 +02:00
|
|
|
|
2014-03-27 15:41:56 +01:00
|
|
|
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
|
|
|
|
++ stdenv.lib.optional withCustomModes "--enable-custom-modes";
|
2012-09-25 20:01:29 +02:00
|
|
|
|
2013-12-09 21:07:56 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2015-04-26 04:41:15 +02:00
|
|
|
meta = with stdenv.lib; {
|
2012-09-25 20:01:29 +02:00
|
|
|
description = "Open, royalty-free, highly versatile audio codec";
|
2014-12-21 00:00:35 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2012-09-25 20:01:29 +02:00
|
|
|
homepage = http://www.opus-codec.org/;
|
2015-04-26 04:41:15 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2012-09-25 20:01:29 +02:00
|
|
|
};
|
|
|
|
}
|