Commit f81520f8 authored by John Ericson's avatar John Ericson Committed by Robert Hensing
Browse files

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.
parent a5ff1199
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -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: {