summary refs log tree commit diff
path: root/pkgs/stdenv/default.nix
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@Yahoo.com>2016-12-24 07:38:56 -0800
committerJohn Ericson <Ericson2314@Yahoo.com>2017-01-13 13:23:26 -0500
commitff355604602edb2d71e7fecaec4b3871ffc943e3 (patch)
tree3150795f6933c007bc548c6f808a8f0695bcf349 /pkgs/stdenv/default.nix
parentb10f415c2172b3b89b7f93aa62c466fcef911d61 (diff)
downloadnixpkgs-ff355604602edb2d71e7fecaec4b3871ffc943e3.tar
nixpkgs-ff355604602edb2d71e7fecaec4b3871ffc943e3.tar.gz
nixpkgs-ff355604602edb2d71e7fecaec4b3871ffc943e3.tar.bz2
nixpkgs-ff355604602edb2d71e7fecaec4b3871ffc943e3.tar.lz
nixpkgs-ff355604602edb2d71e7fecaec4b3871ffc943e3.tar.xz
nixpkgs-ff355604602edb2d71e7fecaec4b3871ffc943e3.tar.zst
nixpkgs-ff355604602edb2d71e7fecaec4b3871ffc943e3.zip
linux stdenv: Inline stage funs to conform to new convention
Code is just moved around
Diffstat (limited to 'pkgs/stdenv/default.nix')
-rw-r--r--pkgs/stdenv/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/default.nix b/pkgs/stdenv/default.nix
index e8e609c7220..0ca03ecdde1 100644
--- a/pkgs/stdenv/default.nix
+++ b/pkgs/stdenv/default.nix
@@ -26,7 +26,7 @@ let
   # On Linux systems, the standard build environment consists of Nix-built
   # instances glibc and the `standard' Unix tools, i.e., the Posix utilities,
   # the GNU C compiler, and so on.
-  inherit (import ./linux args) stagesLinux;
+  stagesLinux = import ./linux args;
 
   inherit (import ./darwin args) stagesDarwin;