zstd: make tests run, but disable

wip/yesman
Jan Malakhovski 6 years ago
parent 6c1a9d9d79
commit 35b8d5aea8
  1. 5
      pkgs/tools/compression/zstd/default.nix

@ -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)"
];

Loading…
Cancel
Save