tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
zstd: make tests run, but disable
Jan Malakhovski
7 years ago
35b8d5ae
6c1a9d9d
+5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
compression
zstd
default.nix
+5
pkgs/tools/compression/zstd/default.nix
···
1
1
{ stdenv, fetchFromGitHub, gnugrep
2
2
, fixDarwinDylibNames
3
3
+
, file
3
4
, legacySupport ? false }:
4
5
5
6
stdenv.mkDerivation rec {
···
18
19
makeFlags = [
19
20
"ZSTD_LEGACY_SUPPORT=${if legacySupport then "1" else "0"}"
20
21
];
22
22
+
23
23
+
checkInputs = [ file ];
24
24
+
doCheck = false; # fails with "zstd: --list does not support reading from standard input"
25
25
+
# probably a bug
21
26
22
27
installFlags = [
23
28
"PREFIX=$(out)"