linux stdenv: Inline stage funs to conform to new convention

Code is just moved around
This commit is contained in:
John Ericson
2017-01-13 13:23:26 -05:00
parent b10f415c21
commit ff35560460
2 changed files with 53 additions and 60 deletions
+1 -1
View File
@@ -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;