2022-10-03 06:19:53 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, valgrind
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
2018-12-13 20:39:04 +00:00
|
|
|
}:
|
2015-01-13 22:54:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-03 07:19:06 +00:00
|
|
|
pname = "lz4";
|
2022-08-16 01:33:51 +00:00
|
|
|
version = "1.9.4";
|
2015-01-13 22:54:02 +00:00
|
|
|
|
2015-04-07 15:35:38 +00:00
|
|
|
src = fetchFromGitHub {
|
2022-08-16 01:33:51 +00:00
|
|
|
sha256 = "sha256-YiMCD3vvrG+oxBUghSrCmP2LAfAGZrEaKz0YoaQJhpI=";
|
2018-06-03 12:17:32 +00:00
|
|
|
rev = "v${version}";
|
2019-05-03 07:19:06 +00:00
|
|
|
repo = pname;
|
|
|
|
owner = pname;
|
2015-01-13 22:54:02 +00:00
|
|
|
};
|
|
|
|
|
2022-10-03 06:19:53 +00:00
|
|
|
patches = lib.optionals (!enableShared) [
|
|
|
|
# This patch is already part of the `dev` branch.
|
|
|
|
# Remove when upgrading to the next version.
|
|
|
|
(fetchpatch {
|
|
|
|
name = "lz4-fix-BUILD_SHARED=no.patch";
|
|
|
|
url = "https://github.com/lz4/lz4/commit/5ccbd38277989ae6a728171d59ae03bad6f2f4d5.patch";
|
|
|
|
sha256 = "sha256-P+/uz3m7EAmHgXF/1Vncc0uKKxNVq6HNIsElx0rGxpw=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-11-12 19:47:47 +00:00
|
|
|
# TODO(@Ericson2314): Separate binaries and libraries
|
2020-02-10 20:31:48 +00:00
|
|
|
outputs = [ "bin" "out" "dev" ];
|
2016-09-05 15:46:25 +00:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
buildInputs = 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"
|
2020-02-10 20:30:50 +00:00
|
|
|
"BUILD_STATIC=${if enableStatic then "yes" else "no"}"
|
|
|
|
"BUILD_SHARED=${if enableShared then "yes" else "no"}"
|
|
|
|
"WINDRES:=${stdenv.cc.bintools.targetPrefix}windres"
|
2018-12-13 20:39:04 +00:00
|
|
|
]
|
2019-11-12 19:47:47 +00:00
|
|
|
# TODO make full dictionary
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isMinGW "TARGET_OS=MINGW"
|
2018-12-13 20:39:04 +00:00
|
|
|
;
|
2015-01-13 22:54:02 +00:00
|
|
|
|
2015-07-30 16:44:43 +00:00
|
|
|
doCheck = false; # tests take a very long time
|
2015-01-20 06:31:00 +00:00
|
|
|
checkTarget = "test";
|
|
|
|
|
2019-11-12 19:47:47 +00:00
|
|
|
# TODO(@Ericson2314): Make resusable setup hook for this issue on Windows.
|
|
|
|
postInstall =
|
2021-01-15 09:19:50 +00:00
|
|
|
lib.optionalString stdenv.hostPlatform.isWindows ''
|
2019-11-12 19:47:47 +00:00
|
|
|
mv $out/bin/*.dll $out/lib
|
|
|
|
ln -s $out/lib/*.dll
|
2020-02-10 20:31:48 +00:00
|
|
|
''
|
|
|
|
+ ''
|
|
|
|
moveToOutput bin "$bin"
|
2020-02-10 20:30:50 +00:00
|
|
|
'';
|
2016-09-05 15:46:25 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-13 22:54:02 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-03-12 20:54:07 +00:00
|
|
|
homepage = "https://lz4.github.io/lz4/";
|
2015-01-13 22:54:02 +00:00
|
|
|
license = with licenses; [ bsd2 gpl2Plus ];
|
2019-11-12 19:47:47 +00:00
|
|
|
platforms = platforms.all;
|
2015-01-13 22:54:02 +00:00
|
|
|
};
|
|
|
|
}
|