summaryrefslogtreecommitdiffstats
path: root/pkgs/stdenv/linux
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-24 10:02:59 +0700
committerCole Helbling <cole.e.helbling@outlook.com>2021-01-24 19:07:54 -0800
commitaa8868c7cca8d30706a68a876d048968c83e1cf1 (patch)
tree0b691e6a879790086c7abb789e2f63ef4bad5950 /pkgs/stdenv/linux
parente8d39a93c2950d2e3d69e52fdc10f6827ca3970b (diff)
pkgs/build-support: stdenv.lib -> lib
Diffstat (limited to 'pkgs/stdenv/linux')
-rw-r--r--pkgs/stdenv/linux/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix
index b36eb1b5742a..f753af499267 100644
--- a/pkgs/stdenv/linux/default.nix
+++ b/pkgs/stdenv/linux/default.nix
@@ -107,6 +107,7 @@ let
bintools = prevStage.binutils;
isGNU = true;
libc = getLibc prevStage;
+ inherit lib;
inherit (prevStage) coreutils gnugrep;
stdenvNoCC = prevStage.ccWrapperStdenv;
};
@@ -166,6 +167,7 @@ in
nativeLibc = false;
buildPackages = { };
libc = getLibc self;
+ inherit lib;
inherit (self) stdenvNoCC coreutils gnugrep;
bintools = bootstrapTools;
};
@@ -312,6 +314,7 @@ in
cc = prevStage.gcc-unwrapped;
bintools = self.binutils;
libc = getLibc self;
+ inherit lib;
inherit (self) stdenvNoCC coreutils gnugrep;
shell = self.bash + "/bin/bash";
};