2017-05-10 17:52:34 +00:00
|
|
|
{ stdenv, fetchFromGitHub, gnugrep
|
2018-03-20 12:41:38 +00:00
|
|
|
, fixDarwinDylibNames
|
2016-01-27 01:45:20 +00:00
|
|
|
, legacySupport ? false }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "zstd-${version}";
|
2018-03-27 09:53:11 +00:00
|
|
|
version = "1.3.4";
|
2016-01-27 01:45:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-03-27 09:53:11 +00:00
|
|
|
sha256 = "090ba7dnv5z2v4vlb8b275b0n7cqsdzjqvr3b6a0w65z13mgy2nw";
|
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
|
|
|
};
|
|
|
|
|
2018-03-20 12:41:38 +00:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
|
|
|
|
2016-01-27 01:45:20 +00:00
|
|
|
makeFlags = [
|
|
|
|
"ZSTD_LEGACY_SUPPORT=${if legacySupport then "1" else "0"}"
|
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
|
|
|
|
2017-05-10 17:52:34 +00:00
|
|
|
preInstall = ''
|
|
|
|
substituteInPlace programs/zstdgrep \
|
|
|
|
--replace "=grep" "=${gnugrep}/bin/grep" \
|
|
|
|
--replace "=zstdcat" "=$out/bin/zstdcat"
|
|
|
|
|
|
|
|
substituteInPlace programs/zstdless \
|
|
|
|
--replace "zstdcat" "$out/bin/zstdcat"
|
|
|
|
'';
|
|
|
|
|
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/;
|
2016-01-27 01:45:20 +00:00
|
|
|
# The licence of the CLI programme is GPLv2+, that of the library BSD-2.
|
|
|
|
license = with licenses; [ gpl2Plus bsd2 ];
|
|
|
|
|
2016-06-23 17:30:12 +00:00
|
|
|
platforms = platforms.unix;
|
2018-01-16 21:59:13 +00:00
|
|
|
maintainers = with maintainers; [ orivej ];
|
2016-01-27 01:45:20 +00:00
|
|
|
};
|
|
|
|
}
|