Revert "lz4: be just a bit more reproducible"

This reverts commit efc359c231,
as it is no longer needed.

See: efc359c231 (commitcomment-15680107)
This commit is contained in:
Tobias Geerinckx-Rice 2016-01-26 16:48:28 +01:00
parent 2352e2589e
commit 7d2f8eca1b

View file

@ -11,17 +11,8 @@ stdenv.mkDerivation rec {
owner = "Cyan4973";
};
patches = [ ./install-on-freebsd.patch ] ;
buildInputs = stdenv.lib.optional doCheck valgrind;
# 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)" ];
@ -29,6 +20,8 @@ stdenv.mkDerivation rec {
doCheck = false; # tests take a very long time
checkTarget = "test";
patches = [ ./install-on-freebsd.patch ] ;
meta = with stdenv.lib; {
description = "Extremely fast compression algorithm";
longDescription = ''