1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 01:51:24 +00:00
nixpkgs/pkgs/tools/compression/lz4/default.nix
Tobias Geerinckx-Rice f97f3d7a1b lz4 127 -> 128
Tests now fail when run in parallel. Don't.
2015-04-01 20:23:47 +02:00

38 lines
1.1 KiB
Nix

{ stdenv, fetchurl, valgrind }:
stdenv.mkDerivation rec {
version = "128";
name = "lz4-${version}";
src = fetchurl {
url = "https://github.com/Cyan4973/lz4/archive/r${version}.tar.gz";
sha256 = "1lf7a0gqm2q7p1qs28lmajmls3pwfk2p0w3hljjlmshbkndaj26b";
};
# valgrind is required only by `make test`
buildInputs = [ valgrind ];
enableParallelBuilding = true;
makeFlags = "PREFIX=$(out)";
doCheck = true;
checkTarget = "test";
checkFlags = "-j1"; # required since version 128
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 = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
}