libblake3: Don't use TBB by default for now

See comment: there are some issues, and since this is all rather new and
Nix dependency, I am wary of a conditional dep so close to the Nixpkgs
stable release.

If we can get a mostly unconditional fix (at least everything but
MinGW), I am happy to enable again.
This commit is contained in:
John Ericson
2025-04-08 22:30:44 +02:00
committed by Robert Hensing
parent a5ff1199c7
commit f81520f83c
+7 -1
View File
@@ -4,7 +4,13 @@
cmake,
fetchFromGitHub,
tbb_2021_11,
useTBB ? true,
# Until we have a release with
# https://github.com/BLAKE3-team/BLAKE3/pull/461 and similar, or those
# PRs are patched onto this current release. Even then, I think we
# still need to disable for MinGW build because
# https://github.com/BLAKE3-team/BLAKE3/issues/467
useTBB ? false,
}:
stdenv.mkDerivation (finalAttrs: {