xxHash: 0.8.0 -> 0.8.1 (#153001)

This commit is contained in:
Sergei Trofimovich 2022-01-09 01:03:53 +00:00 committed by GitHub
parent f9c2ed0713
commit e324d9d94c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "xxHash"; pname = "xxHash";
version = "0.8.0"; version = "0.8.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Cyan4973"; owner = "Cyan4973";
repo = "xxHash"; repo = "xxHash";
rev = "v${version}"; rev = "v${version}";
sha256 = "0hpbzdd6kfki5f61g103vp7pfczqkdj0js63avl0ss552jfb8h96"; sha256 = "sha256-2WoYCO6QRHWrbGP2mK04/sLNTyQLOuL3urVktilAwMA=";
}; };
# Upstream Makefile does not anticipate that user may not want to # Upstream Makefile does not anticipate that user may not want to
@ -22,6 +22,11 @@ stdenv.mkDerivation rec {
makeFlags = [ "PREFIX=$(dev)" "EXEC_PREFIX=$(out)" ]; makeFlags = [ "PREFIX=$(dev)" "EXEC_PREFIX=$(out)" ];
# pkgs/build-support/setup-hooks/compress-man-pages.sh hook fails
# to compress symlinked manpages. Avoid compressing manpages until
# it's fixed.
dontGzipMan = true;
meta = with lib; { meta = with lib; {
description = "Extremely fast hash algorithm"; description = "Extremely fast hash algorithm";
longDescription = '' longDescription = ''