Indentation

This commit is contained in:
Eelco Dolstra 2014-08-24 18:08:23 +02:00
parent 0f7cb13f38
commit 27d3984935

View File

@ -85,6 +85,7 @@ rec {
{gcc, extraAttrs ? {}, overrides ? (pkgs: {}), extraPath ? []}: {gcc, extraAttrs ? {}, overrides ? (pkgs: {}), extraPath ? []}:
let let
thisStdenv = import ../generic { thisStdenv = import ../generic {
inherit system config; inherit system config;
name = "stdenv-linux-boot"; name = "stdenv-linux-boot";
@ -107,10 +108,12 @@ rec {
extraAttrs = extraAttrs // { inherit platform; }; extraAttrs = extraAttrs // { inherit platform; };
overrides = pkgs: (overrides pkgs) // { fetchurl = thisStdenv.fetchurlBoot; }; overrides = pkgs: (overrides pkgs) // { fetchurl = thisStdenv.fetchurlBoot; };
}; };
thisPkgs = allPackages { thisPkgs = allPackages {
inherit system platform; inherit system platform;
bootStdenv = thisStdenv; bootStdenv = thisStdenv;
}; };
in { stdenv = thisStdenv; pkgs = thisPkgs; }; in { stdenv = thisStdenv; pkgs = thisPkgs; };