From 5870795cc68b29681ca644a8802fa11b469f2095 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Wed, 17 May 2017 13:42:51 -0400 Subject: [PATCH] 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. --- pkgs/stdenv/linux/make-bootstrap-tools-cross.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index a8c1e8002028..b55f2bc7b7d3 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -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;