Revert "libblake3: 1.8.0 -> 1.8.2" (#401102)

authored by Florian Klink and committed by GitHub f65d377e a0bb1e68

+8 -3
+8 -3
pkgs/by-name/li/libblake3/package.nix
··· 5 fetchFromGitHub, 6 tbb_2021_11, 7 8 - useTBB ? true, 9 }: 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "libblake3"; 13 - version = "1.8.2"; 14 15 src = fetchFromGitHub { 16 owner = "BLAKE3-team"; 17 repo = "BLAKE3"; 18 tag = finalAttrs.version; 19 - hash = "sha256-IABVErXWYQFXZcwsFKfQhm3ox7UZUcW5uzVrGwsSp94="; 20 }; 21 22 sourceRoot = finalAttrs.src.name + "/c";
··· 5 fetchFromGitHub, 6 tbb_2021_11, 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, 14 }: 15 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "libblake3"; 18 + version = "1.8.0"; 19 20 src = fetchFromGitHub { 21 owner = "BLAKE3-team"; 22 repo = "BLAKE3"; 23 tag = finalAttrs.version; 24 + hash = "sha256-Krh0yVNZKL6Mb0McqWTIMNownsgM3MUEX2IP+F/fu+k="; 25 }; 26 27 sourceRoot = finalAttrs.src.name + "/c";