2015-04-26 04:41:15 +02:00
|
|
|
{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? true }:
|
2012-09-25 20:01:29 +02:00
|
|
|
|
2013-12-09 21:07:56 +01:00
|
|
|
let
|
2016-04-13 01:20:49 +02:00
|
|
|
version = "1.1.2";
|
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 {
|
2013-12-09 21:07:56 +01:00
|
|
|
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
|
2016-04-13 01:20:49 +02:00
|
|
|
sha256 = "1z87x5c5x951lhnm70iqr2gqn15wns5cqsw8nnkvl48jwdw00a8f";
|
2012-09-25 20:01:29 +02:00
|
|
|
};
|
|
|
|
|
2015-10-08 11:25:09 +02:00
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|