mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
62 lines
1.8 KiB
Nix
62 lines
1.8 KiB
Nix
{ stdenv, fetchFromGitHub, gnugrep
|
|
, fixDarwinDylibNames
|
|
, file
|
|
, legacySupport ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "zstd-${version}";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "1gfxi3ymgavjfxh84rhfjan7l4pymwfrn051nwc7n0s3mxp09m6v";
|
|
rev = "v${version}";
|
|
repo = "zstd";
|
|
owner = "facebook";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
|
|
|
makeFlags = [
|
|
"ZSTD_LEGACY_SUPPORT=${if legacySupport then "1" else "0"}"
|
|
];
|
|
|
|
checkInputs = [ file ];
|
|
doCheck = true;
|
|
preCheck = ''
|
|
substituteInPlace tests/playTests.sh \
|
|
--replace 'MD5SUM="md5 -r"' 'MD5SUM="md5sum"'
|
|
'';
|
|
|
|
installFlags = [
|
|
"PREFIX=$(out)"
|
|
];
|
|
|
|
preInstall = ''
|
|
substituteInPlace programs/zstdgrep \
|
|
--replace ":-grep" ":-${gnugrep}/bin/grep" \
|
|
--replace ":-zstdcat" ":-$out/bin/zstdcat"
|
|
|
|
substituteInPlace programs/zstdless \
|
|
--replace "zstdcat" "$out/bin/zstdcat"
|
|
'';
|
|
|
|
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
|
|
property shared by most LZ compression algorithms, such as zlib.
|
|
'';
|
|
homepage = https://facebook.github.io/zstd/;
|
|
# The licence of the CLI programme is GPLv2+, that of the library BSD-2.
|
|
license = with licenses; [ gpl2Plus bsd2 ];
|
|
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ orivej ];
|
|
};
|
|
}
|