pkgs/development/libraries: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-21 19:11:02 -08:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl
{ lib, stdenv, fetchurl
, fixedPoint ? false, withCustomModes ? true }:
let
@@ -15,14 +15,14 @@ stdenv.mkDerivation {
outputs = [ "out" "dev" ];
configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point"
++ stdenv.lib.optional withCustomModes "--enable-custom-modes";
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 stdenv.lib; {
meta = with lib; {
description = "Open, royalty-free, highly versatile audio codec";
license = stdenv.lib.licenses.bsd3;
license = lib.licenses.bsd3;
homepage = "https://www.opus-codec.org/";
platforms = platforms.unix;
};