xxHash: 0.7.4 -> 0.8.0 (#94051)

This commit is contained in:
Orivej Desh 2020-07-28 11:28:51 +00:00 committed by GitHub
parent 09e7fb1d5c
commit f8369badce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,18 +2,18 @@
stdenv.mkDerivation rec {
pname = "xxHash";
version = "0.7.4";
version = "0.8.0";
src = fetchFromGitHub {
owner = "Cyan4973";
repo = "xxHash";
rev = "v${version}";
sha256 = "08j7wxshhzpyrnyilfnvhyv5ycm0yv5m7jf6q4kxcd7j4dcbhmpb";
sha256 = "0hpbzdd6kfki5f61g103vp7pfczqkdj0js63avl0ss552jfb8h96";
};
outputs = [ "out" "dev" ];
makeFlags = [ "PREFIX=$(out)" "INCLUDEDIR=$(dev)/include" ];
makeFlags = [ "PREFIX=$(dev)" "EXEC_PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "Extremely fast hash algorithm";