2019-10-11 20:58:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, cmake, gnugrep
|
2018-03-20 12:41:38 +00:00
|
|
|
, fixDarwinDylibNames
|
2018-08-08 21:33:11 +00:00
|
|
|
, file
|
2019-10-11 20:58:47 +00:00
|
|
|
, legacySupport ? false
|
|
|
|
, enableShared ? true }:
|
2016-01-27 01:45:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-21 00:11:44 +00:00
|
|
|
pname = "zstd";
|
2020-05-23 14:44:00 +00:00
|
|
|
version = "1.4.5";
|
2016-01-27 01:45:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-09-03 20:52:17 +00:00
|
|
|
owner = "facebook";
|
2020-05-23 14:44:00 +00:00
|
|
|
repo = "zstd";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0ay3qlk4sffnmcl3b34q4zd7mkcmjds023icmib1mdli97qcp38l";
|
2016-01-27 01:45:20 +00:00
|
|
|
};
|
|
|
|
|
2019-10-11 20:58:47 +00:00
|
|
|
nativeBuildInputs = [ cmake ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
|
|
|
|
2019-11-12 20:49:47 +00:00
|
|
|
patches = [
|
2020-05-23 14:44:00 +00:00
|
|
|
./playtests-darwin.patch
|
2019-11-12 20:49:47 +00:00
|
|
|
(fetchpatch {
|
2020-05-23 14:44:00 +00:00
|
|
|
url = "https://github.com/facebook/zstd/pull/2163.patch";
|
|
|
|
sha256 = "07mfjc5f9wy0w2xlj36hyf7g5ax9r2rf6ixhkffhnwc6rwy0q54p";
|
2019-11-12 20:49:47 +00:00
|
|
|
})
|
|
|
|
] # This I didn't upstream because if you use posix threads with MinGW it will
|
2020-05-23 14:44:00 +00:00
|
|
|
# work fine, and I'm not sure how to write the condition.
|
2019-11-12 20:49:47 +00:00
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isWindows ./mcfgthreads-no-pthread.patch;
|
|
|
|
|
2019-10-11 20:58:47 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DZSTD_BUILD_SHARED:BOOL=${if enableShared then "ON" else "OFF"}"
|
2020-05-29 13:29:20 +00:00
|
|
|
# They require STATIC for bin/zstd and tests.
|
2019-10-11 20:58:47 +00:00
|
|
|
"-DZSTD_LEGACY_SUPPORT:BOOL=${if legacySupport then "ON" else "OFF"}"
|
|
|
|
"-DZSTD_BUILD_TESTS:BOOL=ON"
|
|
|
|
];
|
|
|
|
cmakeDir = "../build/cmake";
|
|
|
|
dontUseCmakeBuildDir = true;
|
|
|
|
preConfigure = ''
|
|
|
|
mkdir -p build_ && cd $_
|
|
|
|
'';
|
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;
|
2020-05-23 14:44:00 +00:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
ctest -R playTests # The only relatively fast test.
|
|
|
|
runHook postCheck
|
2018-10-14 13:55:09 +00:00
|
|
|
'';
|
2018-08-08 21:33:11 +00:00
|
|
|
|
2020-05-23 14:44:00 +00:00
|
|
|
preInstall = ''
|
2019-10-11 20:58:47 +00:00
|
|
|
substituteInPlace ../programs/zstdgrep \
|
2019-04-18 03:06:48 +00:00
|
|
|
--replace ":-grep" ":-${gnugrep}/bin/grep" \
|
2020-05-29 19:03:02 +00:00
|
|
|
--replace ":-zstdcat" ":-$out/bin/zstdcat"
|
2017-05-10 17:52:34 +00:00
|
|
|
|
2019-10-11 20:58:47 +00:00
|
|
|
substituteInPlace ../programs/zstdless \
|
2020-05-29 19:03:02 +00:00
|
|
|
--replace "zstdcat" "$out/bin/zstdcat"
|
2017-05-10 17:52:34 +00:00
|
|
|
'';
|
2020-05-29 13:29:20 +00:00
|
|
|
# Don't duplicate the library code in runtime closures.
|
|
|
|
postInstall = stdenv.lib.optionalString enableShared ''rm "$out"/lib/libzstd.a'';
|
2017-05-10 17:52:34 +00:00
|
|
|
|
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
|
|
|
'';
|
2020-04-01 01:11:51 +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
|
|
|
};
|
|
|
|
}
|