2017-01-21 06:57:15 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch
|
|
|
|
, fixedPoint ? false, withCustomModes ? true }:
|
2012-09-25 19:01:29 +01:00
|
|
|
|
2013-12-09 20:07:56 +00:00
|
|
|
let
|
2017-05-21 18:19:24 +01:00
|
|
|
version = "1.1.4";
|
2013-12-09 20:07:56 +00:00
|
|
|
in
|
2012-09-25 19:01:29 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-09 20:07:56 +00:00
|
|
|
name = "libopus-${version}";
|
|
|
|
|
2012-09-25 19:01:29 +01:00
|
|
|
src = fetchurl {
|
2013-12-09 20:07:56 +00:00
|
|
|
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
|
2017-05-21 18:19:24 +01:00
|
|
|
sha256 = "14l6kpapmcnvl7p9hrmbqcnzj13zfzyppyc9a5kd4788h2rvc8li";
|
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;
|
2012-09-25 19:01:29 +01:00
|
|
|
homepage = http://www.opus-codec.org/;
|
2015-04-26 03:41:15 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2012-09-25 19:01:29 +01:00
|
|
|
};
|
|
|
|
}
|