* Fix indentation.

svn path=/nixpkgs/branches/modular-python/; revision=26680
This commit is contained in:
Eelco Dolstra 2011-04-04 13:47:04 +00:00
parent f99c0dd302
commit 66a2615eea

View File

@ -212,17 +212,18 @@ rec {
}; };
gccWithStaticLibs = stdenvLinuxBoot3Pkgs.gcc.gcc.override (rec { gccWithStaticLibs = stdenvLinuxBoot3Pkgs.gcc.gcc.override (rec {
ppl = stdenvLinuxBoot3Pkgs.ppl.override { ppl = stdenvLinuxBoot3Pkgs.ppl.override {
static = true; static = true;
gmpxx = stdenvLinuxBoot3Pkgs.gmpxx.override { gmpxx = stdenvLinuxBoot3Pkgs.gmpxx.override {
static = true; static = true;
}; };
}; };
cloogppl = stdenvLinuxBoot3Pkgs.cloogppl.override { cloogppl = stdenvLinuxBoot3Pkgs.cloogppl.override {
inherit ppl; inherit ppl;
static = true; static = true;
}; };
}); });
# 8) Construct a fourth stdenv identical to the second, except that # 8) Construct a fourth stdenv identical to the second, except that
# this one uses the dynamically linked GCC and Binutils from step # this one uses the dynamically linked GCC and Binutils from step