a989b629d9
- New: LZ4_compress_fast() - Changed: New lz4 and lz4hc compression API. Previous function prototypes still supported. - Changed: Sparse file support enabled by default - New: LZ4 CLI improved performance compressing/decompressing multiple files - Added: LZ4_compress_destSize() - Fixed: GCC 4.9+ vector optimization - Changed: Enums converted to LZ4F_ namespace convention - Added: AppVeyor CI environment, for Visual tests - Modified:Obsolete functions generate warnings - Fixed : Bug #75 (unfinished stream) - Updated: Documentation converted to MarkDown format
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, valgrind }:
|
|
|
|
let version = "129"; in
|
|
stdenv.mkDerivation rec {
|
|
name = "lz4-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "0liq5gvnikchgvalpi52hq0npwlh84w94bj79dcbrcw19may5dwi";
|
|
rev = "r${version}";
|
|
repo = "lz4";
|
|
owner = "Cyan4973";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional doCheck valgrind;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
checkFlags = "-j1"; # required since version 128
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Extremely fast compression algorithm";
|
|
longDescription = ''
|
|
Very fast lossless compression algorithm, providing compression speed
|
|
at 400 MB/s per core, with near-linear scalability for multi-threaded
|
|
applications. It also features an extremely fast decoder, with speed in
|
|
multiple GB/s per core, typically reaching RAM speed limits on
|
|
multi-core systems.
|
|
'';
|
|
homepage = https://code.google.com/p/lz4/;
|
|
license = with licenses; [ bsd2 gpl2Plus ];
|
|
platforms = with platforms; linux;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|