3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/compression/lz4/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, valgrind }:
stdenv.mkDerivation rec {
name = "lz4-${version}";
2018-10-01 23:14:26 +01:00
version = "1.8.3";
src = fetchFromGitHub {
2018-10-01 23:14:26 +01:00
sha256 = "0lq00yi7alr9aip6dw0flykzi8yv7z43aay177n86spn9qms7s3g";
rev = "v${version}";
repo = "lz4";
owner = "lz4";
};
2016-09-05 16:46:25 +01:00
outputs = [ "out" "dev" ];
buildInputs = stdenv.lib.optional doCheck valgrind;
2015-01-20 06:31:00 +00:00
enableParallelBuilding = true;
2016-09-05 16:46:25 +01:00
makeFlags = [ "PREFIX=$(out)" "INCLUDEDIR=$(dev)/include" ];
doCheck = false; # tests take a very long time
2015-01-20 06:31:00 +00:00
checkTarget = "test";
2016-09-05 16:46:25 +01:00
postInstall = "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;
};
}