about summary refs log tree commit diff
path: root/pkgs/tools/compression/lz4
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-04-01 20:21:38 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-04-01 20:23:47 +0200
commitf97f3d7a1b96a3edf8253c3630bccba3d2395ce5 (patch)
tree16c8e3b8aea8b6c990b488b61ff5fac3f32738fa /pkgs/tools/compression/lz4
parent224ed7e798caf80e65250385a9cb0ab09c52d2c7 (diff)
lz4 127 -> 128
Tests now fail when run in parallel. Don't.
Diffstat (limited to 'pkgs/tools/compression/lz4')
-rw-r--r--pkgs/tools/compression/lz4/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/tools/compression/lz4/default.nix b/pkgs/tools/compression/lz4/default.nix
index c89909503d5d8..d7d9fc0c0a2c6 100644
--- a/pkgs/tools/compression/lz4/default.nix
+++ b/pkgs/tools/compression/lz4/default.nix
@@ -1,14 +1,12 @@
 { stdenv, fetchurl, valgrind }:
 
 stdenv.mkDerivation rec {
-  # The r127 source still calls itself r126 everywhere, but I'm not going to
-  # patch over such silly cosmetic oversights in an official release. -- nckx
-  version = "127";
+  version = "128";
   name = "lz4-${version}";
 
   src = fetchurl {
     url = "https://github.com/Cyan4973/lz4/archive/r${version}.tar.gz";
-    sha256 = "0hvbbr07j4hfix4dn4xw4fsmkr5s02bj596fn0i15d1i49xby2aj";
+    sha256 = "1lf7a0gqm2q7p1qs28lmajmls3pwfk2p0w3hljjlmshbkndaj26b";
   };
 
   # valgrind is required only by `make test`
@@ -20,6 +18,7 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
   checkTarget = "test";
+  checkFlags = "-j1"; # required since version 128
 
   meta = with stdenv.lib; {
     description = "Extremely fast compression algorithm";