Skip to content

Commit

Permalink
linux cross stdenv: Fix eval errors
Browse files Browse the repository at this point in the history
`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.
  • Loading branch information
Ericson2314 committed May 17, 2017
1 parent 371ebc8 commit 5870795
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand All @@ -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;
Expand Down

0 comments on commit 5870795

Please sign in to comment.