mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
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:
parent
371ebc89ca
commit
5870795cc6
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user