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