treewide: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-16 17:58:11 +07:00
parent a9bb54359e
commit badf51221d
977 changed files with 2613 additions and 2613 deletions
@@ -74,9 +74,9 @@ let
policiesJson = writeText "no-update-firefox-policy.json" (builtins.toJSON { inherit policies; });
defaultSource = stdenv.lib.findFirst (sourceMatches "en-US") {} sources;
defaultSource = lib.findFirst (sourceMatches "en-US") {} sources;
source = stdenv.lib.findFirst (sourceMatches systemLocale) defaultSource sources;
source = lib.findFirst (sourceMatches systemLocale) defaultSource sources;
name = "firefox-${channel}-bin-unwrapped-${version}";
@@ -89,7 +89,7 @@ stdenv.mkDerivation {
phases = [ "unpackPhase" "patchPhase" "installPhase" "fixupPhase" ];
libPath = stdenv.lib.makeLibraryPath
libPath = lib.makeLibraryPath
[ stdenv.cc.cc
alsaLib
(lib.getDev alsaLib)
@@ -131,7 +131,7 @@ stdenv.mkDerivation {
(lib.getDev libpulseaudio)
systemd
ffmpeg
] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [
] + ":" + lib.makeSearchPathOutput "lib" "lib64" [
stdenv.cc.cc
];