2015-04-07 16:35:38 +01:00
|
|
|
{ stdenv, fetchFromGitHub, valgrind }:
|
2015-01-13 22:54:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lz4-${version}";
|
2016-01-24 19:31:44 +00:00
|
|
|
version = "131";
|
2015-01-13 22:54:02 +00:00
|
|
|
|
2015-04-07 16:35:38 +01:00
|
|
|
src = fetchFromGitHub {
|
2015-06-30 08:25:46 +01:00
|
|
|
sha256 = "1bhvcq8fxxsqnpg5qa6k3nsyhq0nl0iarh08sqzclww27hlpyay2";
|
2015-04-07 16:35:38 +01:00
|
|
|
rev = "r${version}";
|
|
|
|
repo = "lz4";
|
|
|
|
owner = "Cyan4973";
|
2015-01-13 22:54:02 +00:00
|
|
|
};
|
|
|
|
|
2015-04-19 02:29:12 +01:00
|
|
|
buildInputs = stdenv.lib.optional doCheck valgrind;
|
2015-01-20 06:31:00 +00:00
|
|
|
|
2015-01-13 22:54:02 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2015-01-13 22:54:02 +00:00
|
|
|
|
2015-07-30 17:44:43 +01:00
|
|
|
doCheck = false; # tests take a very long time
|
2015-01-20 06:31:00 +00:00
|
|
|
checkTarget = "test";
|
|
|
|
|
2016-01-26 15:48:28 +00:00
|
|
|
patches = [ ./install-on-freebsd.patch ] ;
|
|
|
|
|
2015-01-13 22:54:02 +00:00
|
|
|
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 ];
|
2015-12-30 22:45:13 +00:00
|
|
|
platforms = platforms.unix;
|
2015-01-13 22:54:02 +00:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
}
|