about summary refs log tree commit diff
path: root/pkgs/stdenv/booter.nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-10-31 10:50:08 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-11-05 17:10:53 -0500
commit5ae8f18f4d8216ec987e0f63b7d2b9a416a4ca82 (patch)
tree1c57fc1fa034d3e8e22a53c35ec98fcbda7a542d /pkgs/stdenv/booter.nix
parenta8f3d7215c2f508c0ac9a755135e7874ada0da91 (diff)
Rename `__targetPackages` to `targetPackages`
Diffstat (limited to 'pkgs/stdenv/booter.nix')
-rw-r--r--pkgs/stdenv/booter.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/booter.nix b/pkgs/stdenv/booter.nix
index a1055708f995a..a8f8be75545c9 100644
--- a/pkgs/stdenv/booter.nix
+++ b/pkgs/stdenv/booter.nix
@@ -98,7 +98,7 @@ stageFuns: let
     then args'
     else allPackages ((builtins.removeAttrs args' ["selfBuild"]) // {
       buildPackages = if args.selfBuild or true then null else prevStage;
-      __targetPackages = if args.selfBuild or true then null else nextStage;
+      targetPackages = if args.selfBuild or true then null else nextStage;
     });
 
 in dfold folder {} {} withAllowCustomOverrides