2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchurl
|
2017-01-21 07:57:15 +01:00
|
|
|
, fixedPoint ? false, withCustomModes ? true }:
|
2012-09-25 20:01:29 +02:00
|
|
|
|
2013-12-09 21:07:56 +01:00
|
|
|
let
|
2019-04-15 20:12:04 +02:00
|
|
|
version = "1.3.1";
|
2013-12-09 21:07:56 +01:00
|
|
|
in
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "libopus";
|
|
|
|
inherit version;
|
2013-12-09 21:07:56 +01:00
|
|
|
|
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";
|
2019-04-15 20:12:04 +02:00
|
|
|
sha256 = "17gz8kxs4i7icsc1gj713gadiapyklynlwqlf0ai98dj4lg8xdb5";
|
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;
|
2020-10-02 09:58:50 +02:00
|
|
|
homepage = "https://www.opus-codec.org/";
|
2015-04-26 04:41:15 +02:00
|
|
|
platforms = platforms.unix;
|
2012-09-25 20:01:29 +02:00
|
|
|
};
|
|
|
|
}
|