a87208de58
The reason I'm not making this the default is because it seems to add complexity and degrades performance of the library. For details have a look at this lengthy discussion at: https://bugs.debian.org/686777 Signed-off-by: aszlig <aszlig@redmoonstudios.org>
25 lines
647 B
Nix
25 lines
647 B
Nix
{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? false }:
|
|
|
|
let
|
|
version = "1.1";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "libopus-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
|
|
sha256 = "158xprn2086arvdib3vbbygz7z6jqkw2nci7nlywzzwallap0wmr";
|
|
};
|
|
|
|
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
|
|
++ stdenv.lib.optional withCustomModes "--enable-custom-modes";
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Open, royalty-free, highly versatile audio codec";
|
|
license = "BSD";
|
|
homepage = http://www.opus-codec.org/;
|
|
};
|
|
}
|