2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl
|
2017-01-21 06:57:15 +00:00
|
|
|
, fixedPoint ? false, withCustomModes ? true }:
|
2012-09-25 19:01:29 +01:00
|
|
|
|
2013-12-09 20:07:56 +00:00
|
|
|
let
|
2019-04-15 19:12:04 +01:00
|
|
|
version = "1.3.1";
|
2013-12-09 20:07:56 +00:00
|
|
|
in
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "libopus";
|
|
|
|
inherit version;
|
2013-12-09 20:07:56 +00:00
|
|
|
|
2012-09-25 19:01:29 +01:00
|
|
|
src = fetchurl {
|
2017-06-21 17:27:01 +01:00
|
|
|
url = "https://archive.mozilla.org/pub/opus/opus-${version}.tar.gz";
|
2019-04-15 19:12:04 +01:00
|
|
|
sha256 = "17gz8kxs4i7icsc1gj713gadiapyklynlwqlf0ai98dj4lg8xdb5";
|
2012-09-25 19:01:29 +01:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-08 10:25:09 +01: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 19:01:29 +01:00
|
|
|
|
2013-12-09 20:07:56 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2015-04-26 03:41:15 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-09-25 19:01:29 +01:00
|
|
|
description = "Open, royalty-free, highly versatile audio codec";
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.opus-codec.org/";
|
2015-04-26 03:41:15 +01:00
|
|
|
platforms = platforms.unix;
|
2012-09-25 19:01:29 +01:00
|
|
|
};
|
|
|
|
}
|