From e07930358d556231af35423f8a07f13f7a4006c4 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 23 Apr 2025 14:25:39 +0300 Subject: [PATCH] Revert "libblake3: 1.8.0 -> 1.8.2" This reverts commit d7afeaea8ae76ffadf5da4e587454d238a1cd8a6. It breaks the Nix build, as well as the nixos docs. --- pkgs/by-name/li/libblake3/package.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/li/libblake3/package.nix b/pkgs/by-name/li/libblake3/package.nix index 008a35b88254..59306559958e 100644 --- a/pkgs/by-name/li/libblake3/package.nix +++ b/pkgs/by-name/li/libblake3/package.nix @@ -5,18 +5,23 @@ 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: { pname = "libblake3"; - version = "1.8.2"; + version = "1.8.0"; src = fetchFromGitHub { owner = "BLAKE3-team"; repo = "BLAKE3"; tag = finalAttrs.version; - hash = "sha256-IABVErXWYQFXZcwsFKfQhm3ox7UZUcW5uzVrGwsSp94="; + hash = "sha256-Krh0yVNZKL6Mb0McqWTIMNownsgM3MUEX2IP+F/fu+k="; }; sourceRoot = finalAttrs.src.name + "/c";