nixpkgs/pkgs/tools/compression/lz4/default.nix
Tobias Geerinckx-Rice 1f0a12ee8d
lz4: 131 -> 1.7.3
‘make install’ now supports FreeBSD out of the box (untested).
2016-11-17 16:27:31 +01:00

42 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub, valgrind }:
stdenv.mkDerivation rec {
name = "lz4-${version}";
version = "1.7.3";
src = fetchFromGitHub {
sha256 = "0b9yhgiqsdaqgq03vkgalrpbbw7p9a8n8j1nqipra5vw182jrvl0";
rev = "v${version}";
repo = "lz4";
owner = "Cyan4973";
};
outputs = [ "out" "dev" ];
buildInputs = stdenv.lib.optional doCheck valgrind;
enableParallelBuilding = true;
makeFlags = [ "PREFIX=$(out)" "INCLUDEDIR=$(dev)/include" ];
doCheck = false; # tests take a very long time
checkTarget = "test";
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://code.google.com/p/lz4/;
license = with licenses; [ bsd2 gpl2Plus ];
platforms = platforms.unix;
maintainers = with maintainers; [ nckx ];
};
}