nixpkgs/pkgs/tools/compression/zstd/default.nix

46 lines
1.5 KiB
Nix
Raw Normal View History

2016-01-27 01:45:20 +00:00
{ stdenv, fetchFromGitHub
, legacySupport ? false }:
stdenv.mkDerivation rec {
name = "zstd-${version}";
2017-02-16 20:46:48 +00:00
version = "1.1.3";
2016-01-27 01:45:20 +00:00
src = fetchFromGitHub {
2017-02-16 20:46:48 +00:00
sha256 = "1d46hs6pyq55izcmnk7hzvbl8iyxh7bp7qchc7rl8ay396ax2sd5";
2016-01-27 01:45:20 +00:00
rev = "v${version}";
repo = "zstd";
owner = "facebook";
2016-01-27 01:45:20 +00:00
};
# The Makefiles don't properly use file targets, but blindly rebuild
# all dependencies on every make invocation. So no nice phases. :-(
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
makeFlags = [
"ZSTD_LEGACY_SUPPORT=${if legacySupport then "1" else "0"}"
];
installFlags = [
"PREFIX=$(out)"
];
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.
2016-01-27 01:45:20 +00:00
'';
homepage = http://www.zstd.net/;
# 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;
2016-01-27 01:45:20 +00:00
maintainers = with maintainers; [ nckx ];
};
}