Merge pull request #198456 from toonn/b2sum-bump

b2sum: unstable-2018-06-11 -> 20190724
This commit is contained in:
Anderson Torres 2022-11-09 08:03:51 -03:00 committed by GitHub
commit 872fceeed6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,15 +2,15 @@
with lib;
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "b2sum";
version = "unstable-2018-06-11";
version = "20190724";
src = fetchFromGitHub {
owner = "BLAKE2";
repo = "BLAKE2";
rev = "320c325437539ae91091ce62efec1913cd8093c2";
sha256 = "E60M9oP/Sdfg/L3ZxUcDtUXhFz9oP72IybdtVUJh9Sk=";
rev = finalAttrs.version;
sha256 = "sha256-6BVl3Rh+CRPQq3QxcUlk5ArvjIj/IcPCA2/Ok0Zu7UI=";
};
# Use the generic C implementation rather than the SSE optimised version on non-x86 platforms
@ -34,4 +34,4 @@ stdenv.mkDerivation {
maintainers = with maintainers; [ kirelagin ];
platforms = platforms.unix;
};
}
})