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-05-30 12:56:04 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-30 21:09:26 +0200
commitd904b54c0edb4666a38a478438652a0d7c38832d (patch)
tree8c585a4434f270bd88f9c9edf85377a0a145e4cd /pkgs/tools/compression/lz4
parent3c6d34a5d9ef20f51fbf6fdbda38224321387aae (diff)
downloadnixlib-d904b54c0edb4666a38a478438652a0d7c38832d.tar
nixlib-d904b54c0edb4666a38a478438652a0d7c38832d.tar.gz
nixlib-d904b54c0edb4666a38a478438652a0d7c38832d.tar.bz2
nixlib-d904b54c0edb4666a38a478438652a0d7c38832d.tar.lz
nixlib-d904b54c0edb4666a38a478438652a0d7c38832d.tar.xz
nixlib-d904b54c0edb4666a38a478438652a0d7c38832d.tar.zst
nixlib-d904b54c0edb4666a38a478438652a0d7c38832d.zip
lz4: fix `make test`
I'll assume this is an oversight due to hasty releasing and can be
reverted in version 131.
Diffstat (limited to 'pkgs/tools/compression/lz4')
-rw-r--r--pkgs/tools/compression/lz4/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/compression/lz4/default.nix b/pkgs/tools/compression/lz4/default.nix
index 8cf8677b3777..fc3eca6ab10f 100644
--- a/pkgs/tools/compression/lz4/default.nix
+++ b/pkgs/tools/compression/lz4/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
   checkTarget = "test";
-  checkFlags = "-j1"; # required since version 128
+  checkFlags = "-j1 -C programs"; # -j1 required since version 128, -C should be temporary
 
   meta = with stdenv.lib; {
     description = "Extremely fast compression algorithm";