2019-11-12 20:49:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, gnugrep
|
2018-03-20 12:41:38 +00:00
|
|
|
, fixDarwinDylibNames
|
2018-08-08 21:33:11 +00:00
|
|
|
, file
|
2016-01-27 01:45:20 +00:00
|
|
|
, legacySupport ? false }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-21 00:11:44 +00:00
|
|
|
pname = "zstd";
|
2019-11-05 19:16:22 +00:00
|
|
|
version = "1.4.4";
|
2016-01-27 01:45:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-11-05 19:16:22 +00:00
|
|
|
sha256 = "0zn7r8d4m8w2lblnjalqpz18na0spzkdiw3fwq2fzb7drhb32v54";
|
2016-01-27 01:45:20 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "zstd";
|
2016-09-03 20:52:17 +00:00
|
|
|
owner = "facebook";
|
2016-01-27 01:45:20 +00:00
|
|
|
};
|
|
|
|
|
2019-11-12 20:49:47 +00:00
|
|
|
patches = [
|
|
|
|
# All 3 from https://github.com/facebook/zstd/pull/1883
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/facebook/zstd/commit/106278e7e5fafaea3b7deb4147bdc8071562d2f0.diff";
|
|
|
|
sha256 = "13z7id1qbc05cv1rmak7c8xrchp7jh1i623bq5pwcihg57wzcyr8";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/facebook/zstd/commit/0ede342acc2c26f87ae962fa88e158904d4198c4.diff";
|
|
|
|
sha256 = "12l5xbvnzkvr76mvl1ls767paqfwbd9q1pzq44ckacfpz4f6iaap";
|
|
|
|
excludes = [
|
|
|
|
# I think line endings are causing problems, or something like that
|
|
|
|
"programs/windres/generate_res.bat"
|
|
|
|
];
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/facebook/zstd/commit/10552eaffef84c011f67af0e04f0780b50a5ab26.diff";
|
|
|
|
sha256 = "1s27ravar3rn7q8abybp9733jhpsfcaci51k04da94ahahvxwiqw";
|
|
|
|
})
|
|
|
|
] # This I didn't upstream because if you use posix threads with MinGW it will
|
|
|
|
# work find, and I'm not sure how to write the condition.
|
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isWindows ./mcfgthreads-no-pthread.patch;
|
|
|
|
|
|
|
|
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2018-03-20 12:41:38 +00:00
|
|
|
|
2016-01-27 01:45:20 +00:00
|
|
|
makeFlags = [
|
|
|
|
"ZSTD_LEGACY_SUPPORT=${if legacySupport then "1" else "0"}"
|
2019-11-12 20:49:47 +00:00
|
|
|
] ++ stdenv.lib.optional stdenv.hostPlatform.isWindows "OS=Windows";
|
2016-01-27 01:45:20 +00:00
|
|
|
|
2018-08-08 21:33:11 +00:00
|
|
|
checkInputs = [ file ];
|
2018-10-14 13:55:09 +00:00
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
|
|
substituteInPlace tests/playTests.sh \
|
|
|
|
--replace 'MD5SUM="md5 -r"' 'MD5SUM="md5sum"'
|
|
|
|
'';
|
2018-08-08 21:33:11 +00:00
|
|
|
|
2016-01-27 01:45:20 +00:00
|
|
|
installFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
|
|
|
|
2017-05-10 17:52:34 +00:00
|
|
|
preInstall = ''
|
|
|
|
substituteInPlace programs/zstdgrep \
|
2019-04-18 03:06:48 +00:00
|
|
|
--replace ":-grep" ":-${gnugrep}/bin/grep" \
|
|
|
|
--replace ":-zstdcat" ":-$out/bin/zstdcat"
|
2017-05-10 17:52:34 +00:00
|
|
|
|
|
|
|
substituteInPlace programs/zstdless \
|
|
|
|
--replace "zstdcat" "$out/bin/zstdcat"
|
|
|
|
'';
|
|
|
|
|
2019-07-21 00:11:44 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-01-27 01:45:20 +00: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 20:52:17 +00:00
|
|
|
property shared by most LZ compression algorithms, such as zlib.
|
2016-01-27 01:45:20 +00:00
|
|
|
'';
|
2018-03-27 09:53:11 +00:00
|
|
|
homepage = https://facebook.github.io/zstd/;
|
2019-07-21 00:11:44 +00:00
|
|
|
license = with licenses; [ bsd3 ]; # Or, at your opinion, GPL-2.0-only.
|
2016-01-27 01:45:20 +00:00
|
|
|
|
2019-11-12 20:49:47 +00:00
|
|
|
platforms = platforms.all;
|
2018-01-16 21:59:13 +00:00
|
|
|
maintainers = with maintainers; [ orivej ];
|
2016-01-27 01:45:20 +00:00
|
|
|
};
|
|
|
|
}
|