Skip to content

Commit

Permalink
Merge pull request #25862 from obsidiansystems/linux-stdenv-cross
Browse files Browse the repository at this point in the history
linux cross stdenv: Fix eval errors
  • Loading branch information
Ericson2314 committed May 17, 2017
2 parents 6d599b7 + 5870795 commit 3e0b6b5
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 3e0b6b5

Please sign in to comment.