mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
30 lines
774 B
Nix
30 lines
774 B
Nix
{ lib, stdenv, fetchurl
|
|
, fixedPoint ? false, withCustomModes ? true }:
|
|
|
|
let
|
|
version = "1.3.1";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "libopus";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://archive.mozilla.org/pub/opus/opus-${version}.tar.gz";
|
|
sha256 = "17gz8kxs4i7icsc1gj713gadiapyklynlwqlf0ai98dj4lg8xdb5";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
configureFlags = lib.optional fixedPoint "--enable-fixed-point"
|
|
++ lib.optional withCustomModes "--enable-custom-modes";
|
|
|
|
doCheck = !stdenv.isi686; # test_unit_LPC_inv_pred_gain fails
|
|
|
|
meta = with lib; {
|
|
description = "Open, royalty-free, highly versatile audio codec";
|
|
license = lib.licenses.bsd3;
|
|
homepage = "https://www.opus-codec.org/";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|