Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions pkgs/by-name/li/libblake3/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,18 @@
fetchFromGitHub,
tbb_2021_11,

# 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,
useTBB ? true,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "libblake3";
version = "1.8.0";
version = "1.8.2";

src = fetchFromGitHub {
owner = "BLAKE3-team";
repo = "BLAKE3";
tag = finalAttrs.version;
hash = "sha256-Krh0yVNZKL6Mb0McqWTIMNownsgM3MUEX2IP+F/fu+k=";
hash = "sha256-IABVErXWYQFXZcwsFKfQhm3ox7UZUcW5uzVrGwsSp94=";
};

sourceRoot = finalAttrs.src.name + "/c";
Expand Down