From 981b5f7eb145f710dc57458bbac382f190ce1a54 Mon Sep 17 00:00:00 2001 From: Martin Joerg Date: Mon, 10 Nov 2025 14:49:27 +0000 Subject: [PATCH] flake.nix: avoid aliased usage of targetPlatform --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 98861323e026..1bac7569d3ea 100644 --- a/flake.nix +++ b/flake.nix @@ -113,7 +113,7 @@ ( self.legacyPackages.${system}.stdenv.hostPlatform.isLinux # Exclude power64 due to "libressl is not available on the requested hostPlatform" with hostPlatform being power64 - && !self.legacyPackages.${system}.targetPlatform.isPower64 + && !self.legacyPackages.${system}.stdenv.targetPlatform.isPower64 # Exclude armv6l-linux because "cannot bootstrap GHC on this platform ('armv6l-linux' with libc 'defaultLibc')" && system != "armv6l-linux" # Exclude riscv64-linux because "cannot bootstrap GHC on this platform ('riscv64-linux' with libc 'defaultLibc')"