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.
2 parents 13239a4 + 312229d commit b7bd886Copy full SHA for b7bd886
1 file changed
pkgs/by-name/bl/blender/package.nix
@@ -219,6 +219,8 @@ stdenv'.mkDerivation (finalAttrs: {
219
]
220
++ lib.optionals stdenv.hostPlatform.isDarwin [
221
(lib.cmakeFeature "LIBDIR" "/does-not-exist")
222
+ ]
223
+ ++ lib.optionals stdenv.hostPlatform.isAarch64 [
224
(lib.cmakeFeature "SSE2NEON_INCLUDE_DIR" "${sse2neon}/include")
225
];
226
@@ -310,9 +312,9 @@ stdenv'.mkDerivation (finalAttrs: {
310
312
apple-sdk_15
311
313
brotli
314
llvmPackages.openmp
- sse2neon
315
316
)
317
+ ++ lib.optionals stdenv.hostPlatform.isAarch64 [ sse2neon ]
318
++ lib.optionals cudaSupport [ cudaPackages.cuda_cudart ]
319
++ lib.optionals openUsdSupport [ pyPkgsOpenusd ]
320
++ lib.optionals waylandSupport [
0 commit comments