about summary refs log tree commit diff
path: root/pkgs/development/libraries/xxHash
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2020-07-28 11:28:51 +0000
committerGitHub <noreply@github.com>2020-07-28 11:28:51 +0000
commitf8369badcefea0fdc85ad175ede3112a451086d0 (patch)
treea22813b2524643334df5977a15d49f1cf881acef /pkgs/development/libraries/xxHash
parent09e7fb1d5c08fdf6decb2b12738f3996193a4120 (diff)
xxHash: 0.7.4 -> 0.8.0 (#94051)
Diffstat (limited to 'pkgs/development/libraries/xxHash')
-rw-r--r--pkgs/development/libraries/xxHash/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/xxHash/default.nix b/pkgs/development/libraries/xxHash/default.nix
index 58bf562b08096..e572e8bb31ff3 100644
--- a/pkgs/development/libraries/xxHash/default.nix
+++ b/pkgs/development/libraries/xxHash/default.nix
@@ -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";