mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
e0a4d1083f
lz4: Fix pkgsStatic build
54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, valgrind
|
|
, enableStatic ? false, enableShared ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lz4-${version}";
|
|
version = "1.8.3";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "0lq00yi7alr9aip6dw0flykzi8yv7z43aay177n86spn9qms7s3g";
|
|
rev = "v${version}";
|
|
repo = "lz4";
|
|
owner = "lz4";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
buildInputs = stdenv.lib.optional doCheck valgrind;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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"
|
|
;
|
|
|
|
doCheck = false; # tests take a very long time
|
|
checkTarget = "test";
|
|
|
|
# TODO remove
|
|
postInstall = stdenv.lib.optionalString (!enableStatic) "rm $out/lib/*.a";
|
|
|
|
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://lz4.github.io/lz4/;
|
|
license = with licenses; [ bsd2 gpl2Plus ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|