2018-12-13 20:39:04 +00:00
|
|
|
{ stdenv, fetchFromGitHub, valgrind
|
|
|
|
, enableStatic ? false, enableShared ? true
|
|
|
|
}:
|
2015-01-13 22:54:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lz4-${version}";
|
2019-04-27 06:17:05 +01:00
|
|
|
version = "1.9.1";
|
2015-01-13 22:54:02 +00:00
|
|
|
|
2015-04-07 16:35:38 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-04-27 06:17:05 +01:00
|
|
|
sha256 = "1l1caxrik1hqs40vj3bpv1pikw6b74cfazv5c0v6g48zpcbmshl0";
|
2018-06-03 13:17:32 +01:00
|
|
|
rev = "v${version}";
|
2015-04-07 16:35:38 +01:00
|
|
|
repo = "lz4";
|
2018-06-03 13:17:32 +01:00
|
|
|
owner = "lz4";
|
2015-01-13 22:54:02 +00:00
|
|
|
};
|
|
|
|
|
2016-09-05 16:46:25 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
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;
|
|
|
|
|
2018-12-13 20:39:04 +00:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
"INCLUDEDIR=$(dev)/include"
|
|
|
|
# TODO do this instead
|
|
|
|
#"BUILD_STATIC=${if enableStatic then "yes" else "no"}"
|
|
|
|
#"BUILD_SHARED=${if enableShared then "yes" else "no"}"
|
|
|
|
]
|
|
|
|
# TODO delete and do above
|
|
|
|
++ stdenv.lib.optional (enableStatic) "BUILD_STATIC=yes"
|
|
|
|
++ stdenv.lib.optional (!enableShared) "BUILD_SHARED=no"
|
|
|
|
;
|
2015-01-13 22:54:02 +00:00
|
|
|
|
2015-07-30 17:44:43 +01:00
|
|
|
doCheck = false; # tests take a very long time
|
2015-01-20 06:31:00 +00:00
|
|
|
checkTarget = "test";
|
|
|
|
|
2018-12-13 20:39:04 +00:00
|
|
|
# TODO remove
|
|
|
|
postInstall = stdenv.lib.optionalString (!enableStatic) "rm $out/lib/*.a";
|
2016-09-05 16:46:25 +01: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.
|
|
|
|
'';
|
2017-10-27 00:44:19 +01:00
|
|
|
homepage = https://lz4.github.io/lz4/;
|
2015-01-13 22:54:02 +00:00
|
|
|
license = with licenses; [ bsd2 gpl2Plus ];
|
2015-12-30 22:45:13 +00:00
|
|
|
platforms = platforms.unix;
|
2015-01-13 22:54:02 +00:00
|
|
|
};
|
|
|
|
}
|