Merge pull request #198456 from toonn/b2sum-bump

b2sum: unstable-2018-06-11 -> 20190724

authored by Anderson Torres and committed by GitHub 872fceee 058c9220

+5 -5
+5 -5
pkgs/tools/security/b2sum/default.nix
··· 2 2 3 3 with lib; 4 4 5 - stdenv.mkDerivation { 5 + stdenv.mkDerivation (finalAttrs: { 6 6 pname = "b2sum"; 7 - version = "unstable-2018-06-11"; 7 + version = "20190724"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "BLAKE2"; 11 11 repo = "BLAKE2"; 12 - rev = "320c325437539ae91091ce62efec1913cd8093c2"; 13 - sha256 = "E60M9oP/Sdfg/L3ZxUcDtUXhFz9oP72IybdtVUJh9Sk="; 12 + rev = finalAttrs.version; 13 + sha256 = "sha256-6BVl3Rh+CRPQq3QxcUlk5ArvjIj/IcPCA2/Ok0Zu7UI="; 14 14 }; 15 15 16 16 # Use the generic C implementation rather than the SSE optimised version on non-x86 platforms ··· 34 34 maintainers = with maintainers; [ kirelagin ]; 35 35 platforms = platforms.unix; 36 36 }; 37 - } 37 + })