2017-05-10 19:52:34 +02:00
|
|
|
{ stdenv, fetchFromGitHub, gnugrep
|
2018-03-20 13:41:38 +01:00
|
|
|
, fixDarwinDylibNames
|
2018-08-08 23:33:11 +02:00
|
|
|
, file
|
2016-01-27 02:45:20 +01:00
|
|
|
, legacySupport ? false }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-21 02:11:44 +02:00
|
|
|
pname = "zstd";
|
2019-08-20 00:05:51 +02:00
|
|
|
version = "1.4.3";
|
2016-01-27 02:45:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-08-20 00:05:51 +02:00
|
|
|
sha256 = "0mmgs98cfh92gcbjyv37vz8nq7x4x7fbzymlxyqd9awwpv9v0i5n";
|
2016-01-27 02:45:20 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "zstd";
|
2016-09-03 22:52:17 +02:00
|
|
|
owner = "facebook";
|
2016-01-27 02:45:20 +01:00
|
|
|
};
|
|
|
|
|
2018-03-20 13:41:38 +01:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
|
|
|
|
2016-01-27 02:45:20 +01:00
|
|
|
makeFlags = [
|
|
|
|
"ZSTD_LEGACY_SUPPORT=${if legacySupport then "1" else "0"}"
|
|
|
|
];
|
|
|
|
|
2018-08-08 23:33:11 +02:00
|
|
|
checkInputs = [ file ];
|
2018-10-14 15:55:09 +02:00
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
|
|
substituteInPlace tests/playTests.sh \
|
|
|
|
--replace 'MD5SUM="md5 -r"' 'MD5SUM="md5sum"'
|
|
|
|
'';
|
2018-08-08 23:33:11 +02:00
|
|
|
|
2016-01-27 02:45:20 +01:00
|
|
|
installFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
|
|
|
|
2017-05-10 19:52:34 +02:00
|
|
|
preInstall = ''
|
|
|
|
substituteInPlace programs/zstdgrep \
|
2019-04-18 05:06:48 +02:00
|
|
|
--replace ":-grep" ":-${gnugrep}/bin/grep" \
|
|
|
|
--replace ":-zstdcat" ":-$out/bin/zstdcat"
|
2017-05-10 19:52:34 +02:00
|
|
|
|
|
|
|
substituteInPlace programs/zstdless \
|
|
|
|
--replace "zstdcat" "$out/bin/zstdcat"
|
|
|
|
'';
|
|
|
|
|
2019-07-21 02:11:44 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-01-27 02:45:20 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Zstandard real-time compression algorithm";
|
|
|
|
longDescription = ''
|
|
|
|
Zstd, short for Zstandard, is a fast lossless compression algorithm,
|
|
|
|
targeting real-time compression scenarios at zlib-level compression
|
|
|
|
ratio. Zstd can also offer stronger compression ratio at the cost of
|
|
|
|
compression speed. Speed/ratio trade-off is configurable by small
|
|
|
|
increment, to fit different situations. Note however that decompression
|
|
|
|
speed is preserved and remain roughly the same at all settings, a
|
2016-09-03 22:52:17 +02:00
|
|
|
property shared by most LZ compression algorithms, such as zlib.
|
2016-01-27 02:45:20 +01:00
|
|
|
'';
|
2018-03-27 11:53:11 +02:00
|
|
|
homepage = https://facebook.github.io/zstd/;
|
2019-07-21 02:11:44 +02:00
|
|
|
license = with licenses; [ bsd3 ]; # Or, at your opinion, GPL-2.0-only.
|
2016-01-27 02:45:20 +01:00
|
|
|
|
2016-06-23 19:30:12 +02:00
|
|
|
platforms = platforms.unix;
|
2018-01-16 22:59:13 +01:00
|
|
|
maintainers = with maintainers; [ orivej ];
|
2016-01-27 02:45:20 +01:00
|
|
|
};
|
|
|
|
}
|