Skip to content

Commit f81520f

Browse files
Ericson2314roberth
authored andcommitted
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.
1 parent a5ff119 commit f81520f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pkgs/by-name/li/libblake3/package.nix

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44
cmake,
55
fetchFromGitHub,
66
tbb_2021_11,
7-
useTBB ? true,
7+
8+
# Until we have a release with
9+
# https://github.com/BLAKE3-team/BLAKE3/pull/461 and similar, or those
10+
# PRs are patched onto this current release. Even then, I think we
11+
# still need to disable for MinGW build because
12+
# https://github.com/BLAKE3-team/BLAKE3/issues/467
13+
useTBB ? false,
814
}:
915

1016
stdenv.mkDerivation (finalAttrs: {

0 commit comments

Comments
 (0)