zstd: make tests run, but disable

This commit is contained in:
Jan Malakhovski 2018-08-08 21:33:11 +00:00
parent 6c1a9d9d79
commit 35b8d5aea8

View file

@ -1,5 +1,6 @@
{ stdenv, fetchFromGitHub, gnugrep
, fixDarwinDylibNames
, file
, legacySupport ? false }:
stdenv.mkDerivation rec {
@ -19,6 +20,10 @@ stdenv.mkDerivation rec {
"ZSTD_LEGACY_SUPPORT=${if legacySupport then "1" else "0"}"
];
checkInputs = [ file ];
doCheck = false; # fails with "zstd: --list does not support reading from standard input"
# probably a bug
installFlags = [
"PREFIX=$(out)"
];