1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
nixpkgs/pkgs/tools/compression/lz4/default.nix

47 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, valgrind }:
stdenv.mkDerivation rec {
name = "lz4-${version}";
version = "131";
src = fetchFromGitHub {
sha256 = "1bhvcq8fxxsqnpg5qa6k3nsyhq0nl0iarh08sqzclww27hlpyay2";
rev = "r${version}";
repo = "lz4";
owner = "Cyan4973";
};
2016-01-26 05:12:23 +00:00
patches = [ ./install-on-freebsd.patch ] ;
buildInputs = stdenv.lib.optional doCheck valgrind;
2015-01-20 06:31:00 +00:00
2016-01-26 05:12:23 +00:00
# An ever-changing __DATE__ isn't very reproducible, so we must override it.
# But rather than displaying "()" or 1970, let --version show useful info:
NIX_CFLAGS_COMPILE = [
''-D__DATE__="${stdenv.cc.cc.name}"''
"-Wno-builtin-macro-redefined"
];
enableParallelBuilding = true;
makeFlags = [ "PREFIX=$(out)" ];
doCheck = false; # tests take a very long time
2015-01-20 06:31:00 +00:00
checkTarget = "test";
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 ];
};
}