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 23ce77d commit 0a8e692Copy full SHA for 0a8e692
1 file changed
pkgs/stdenv/generic/check-meta.nix
@@ -367,7 +367,7 @@ let
367
else if !allowBroken && attrs.meta.broken or false then
368
{ valid = "no"; reason = "broken"; errormsg = "is marked as broken"; }
369
else if !allowUnsupportedSystem && hasUnsupportedPlatform attrs then
370
- { valid = "no"; reason = "unsupported"; errormsg = "is not supported on ‘${hostPlatform.system}’"; }
+ { valid = "no"; reason = "unsupported"; errormsg = "is only supported on `${toString attrs.meta.platforms}` but not on requested ‘${hostPlatform.system}’"; }
371
else if !(hasAllowedInsecure attrs) then
372
{ valid = "no"; reason = "insecure"; errormsg = "is marked as insecure"; }
373
0 commit comments