29 lines
799 B
Nix
29 lines
799 B
Nix
{ stdenv, fetchurl, fixedPoint ? false, withCustomModes ? true }:
|
|
|
|
let
|
|
version = "1.1.2";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "libopus-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz";
|
|
sha256 = "1z87x5c5x951lhnm70iqr2gqn15wns5cqsw8nnkvl48jwdw00a8f";
|
|
};
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
|
|
++ stdenv.lib.optional withCustomModes "--enable-custom-modes";
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open, royalty-free, highly versatile audio codec";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
homepage = http://www.opus-codec.org/;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|