02dfbde639
Candidates identified with git grep -F "$(grep -v '#' pkgs/build-support/fetchurl/mirrors.nix | grep -v nixos.org | grep :// | cut -d '"' -f 2)" and then manually reviewed and tested.
27 lines
758 B
Nix
27 lines
758 B
Nix
{ lib, stdenv, fetchurl
|
|
, fixedPoint ? false, withCustomModes ? true }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libopus";
|
|
version = "1.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://mozilla/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 && !stdenv.isAarch32; # 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;
|
|
};
|
|
}
|