1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/compression/zstd/default.nix
Tobias Geerinckx-Rice 74acc3ad93 zstd: 0.5.0 -> 0.5.1
Changes:
- New: Optimal parsing => Very high compression modes, thanks to @inikep
- Changed: Dictionary builder integrated into libzstd and zstd cli
- Changed (!): zstd cli now uses "multiple input files" as default mode. See zstd -h.
- Fix: high compression modes for big-endian platforms (#123)
- New: zstd cli : -t | --test command
2016-02-22 19:42:27 +01:00

46 lines
1.5 KiB
Nix

{ stdenv, fetchFromGitHub
, legacySupport ? false }:
stdenv.mkDerivation rec {
name = "zstd-${version}";
version = "0.5.1";
src = fetchFromGitHub {
sha256 = "18mfrq5fqd7gkkqrgc32rlb98vw45rq1vsbrg44bprg3mv6ca3ls";
rev = "v${version}";
repo = "zstd";
owner = "Cyan4973";
};
# 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.
'';
homepage = http://www.zstd.net/;
# The licence of the CLI programme is GPLv2+, that of the library BSD-2.
license = with licenses; [ gpl2Plus bsd2 ];
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}