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.
null
1 parent 4a230e2 commit 0170f90Copy full SHA for 0170f90
1 file changed
pkgs/development/libraries/mesa/default.nix
@@ -347,9 +347,9 @@ stdenv.mkDerivation {
347
(buildPackages.mesa.cross_tools or null)
348
];
349
350
- disallowedRequisites = lib.optionals needNativeCLC [
351
- (buildPackages.mesa.cross_tools or null)
352
- ];
+ disallowedRequisites = lib.optional (
+ needNativeCLC && buildPackages.mesa ? cross_tools
+ ) buildPackages.mesa.cross_tools;
353
354
doCheck = false;
355
0 commit comments