We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd404c4 commit 72d622cCopy full SHA for 72d622c
lib/default.nix
@@ -256,8 +256,8 @@ in {
256
&& !(stdenv.hostPlatform.isLinux && stdenv.targetPlatform.isMusl && stdenv.hostPlatform.linuxArch == stdenv.targetPlatform.linuxArch);
257
# Native musl build-host-target combo
258
isNativeMusl = stdenv.hostPlatform.isMusl
259
- && stdenv.buildPlatform == stdenv.hostPlatform
260
- && stdenv.hostPlatform == stdenv.targetPlatform;
+ && stdenv.buildPlatform.linuxArch == stdenv.hostPlatform.linuxArch
+ && stdenv.hostPlatform.linuxArch == stdenv.targetPlatform.linuxArch;
261
262
# Takes a version number, module or list of modules (for cabalProject)
263
# and converts it to an list of project modules. This allows
0 commit comments