about summary refs log tree commit diff
path: root/pkgs/development/libraries/xxHash
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-01-09 01:03:53 +0000
committerGitHub <noreply@github.com>2022-01-08 20:03:53 -0500
commite324d9d94cfd1196ad7bbf74372d815bca94917b (patch)
treeee2364997fdd34ad0cca5db9c849ae4a45098789 /pkgs/development/libraries/xxHash
parentf9c2ed0713296a247bec8f142f32c479e1a2dcd1 (diff)
xxHash: 0.8.0 -> 0.8.1 (#153001)
Diffstat (limited to 'pkgs/development/libraries/xxHash')
-rw-r--r--pkgs/development/libraries/xxHash/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/libraries/xxHash/default.nix b/pkgs/development/libraries/xxHash/default.nix
index fbeadc2b353a3..f4fa061128148 100644
--- a/pkgs/development/libraries/xxHash/default.nix
+++ b/pkgs/development/libraries/xxHash/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "xxHash";
-  version = "0.8.0";
+  version = "0.8.1";
 
   src = fetchFromGitHub {
     owner = "Cyan4973";
     repo = "xxHash";
     rev = "v${version}";
-    sha256 = "0hpbzdd6kfki5f61g103vp7pfczqkdj0js63avl0ss552jfb8h96";
+    sha256 = "sha256-2WoYCO6QRHWrbGP2mK04/sLNTyQLOuL3urVktilAwMA=";
   };
 
   # Upstream Makefile does not anticipate that user may not want to
@@ -22,6 +22,11 @@ stdenv.mkDerivation rec {
 
   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; {
     description = "Extremely fast hash algorithm";
     longDescription = ''