2015-04-07 16:35:38 +01:00
|
|
|
{ stdenv, fetchFromGitHub, valgrind }:
|
2015-01-13 22:54:02 +00:00
|
|
|
|
2015-05-12 16:56:48 +01:00
|
|
|
let version = "129"; in
|
2015-01-13 22:54:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lz4-${version}";
|
|
|
|
|
2015-04-07 16:35:38 +01:00
|
|
|
src = fetchFromGitHub {
|
2015-05-12 16:56:48 +01:00
|
|
|
sha256 = "0liq5gvnikchgvalpi52hq0npwlh84w94bj79dcbrcw19may5dwi";
|
2015-04-07 16:35:38 +01:00
|
|
|
rev = "r${version}";
|
|
|
|
repo = "lz4";
|
|
|
|
owner = "Cyan4973";
|
2015-01-13 22:54:02 +00:00
|
|
|
};
|
|
|
|
|
2015-04-19 02:29:12 +01:00
|
|
|
buildInputs = stdenv.lib.optional doCheck valgrind;
|
2015-01-20 06:31:00 +00:00
|
|
|
|
2015-01-13 22:54:02 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
|
2015-01-20 06:31:00 +00:00
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
2015-04-01 19:21:38 +01:00
|
|
|
checkFlags = "-j1"; # required since version 128
|
2015-01-20 06:31:00 +00:00
|
|
|
|
2015-01-13 22:54:02 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|