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-07-30 18:44:43 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-31 02:02:07 +0200
commitc0f59dc0bbdd13eb81c78e7e1bb67d5eb52da08e (patch)
tree73f5d25e5cb3411afec63abf1cfc4e1922445660 /pkgs/tools/compression/lz4
parent6c6201a99bb52e96d7c10365dbcf67f6cafdfe2c (diff)
lz4: remove test restrictions
Tests are still disabled by default.
Diffstat (limited to 'pkgs/tools/compression/lz4')
-rw-r--r--pkgs/tools/compression/lz4/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/tools/compression/lz4/default.nix b/pkgs/tools/compression/lz4/default.nix
index 57f0327fa1eb3..1fefc1dcc83ac 100644
--- a/pkgs/tools/compression/lz4/default.nix
+++ b/pkgs/tools/compression/lz4/default.nix
@@ -17,9 +17,8 @@ stdenv.mkDerivation rec {
 
   makeFlags = "PREFIX=$(out)";
 
-  doCheck = false;
+  doCheck = false; # tests take a very long time
   checkTarget = "test";
-  checkFlags = "-j1 -C programs"; # -j1 required since version 128, -C should be temporary
 
   meta = with stdenv.lib; {
     description = "Extremely fast compression algorithm";