linux cross stdenv: Fix eval errors

`pkgsNoParams` was removed by me, but then #25035 was merged using it,
leading to an unbound identifier.

It would be nice to get travis to do build release-cross.nix or
something to catch these things.
This commit is contained in:
John Ericson 2017-05-17 13:42:51 -04:00
parent 371ebc89ca
commit 5870795cc6

View File

@ -63,7 +63,7 @@ let
};
scaleway-c1-crossSystem.crossSystem = armv7l-hf-multiplatform-crossSystem.crossSystem // rec {
platform = pkgsNoParams.platforms.scaleway-c1;
platform = lib.systems.platforms.scaleway-c1;
inherit (platform) gcc;
inherit (gcc) fpu;
};
@ -73,9 +73,9 @@ let
config = "armv5tel-softfloat-linux-gnueabi";
float = "soft";
platform = pkgsNoParams.platforms.pogoplug4;
platform = lib.systems.platforms.pogoplug4;
inherit (pkgsNoParams.platforms.pogoplug4) gcc;
inherit (lib.systems.platforms.pogoplug4) gcc;
libc = "glibc";
withTLS = true;