lz4: Don't install static library

This commit is contained in:
Eelco Dolstra 2016-09-05 17:46:25 +02:00
parent 7c239702b5
commit b87d5abafd

View File

@ -11,17 +11,21 @@ stdenv.mkDerivation rec {
owner = "Cyan4973";
};
outputs = [ "out" "dev" ];
buildInputs = stdenv.lib.optional doCheck valgrind;
enableParallelBuilding = true;
makeFlags = [ "PREFIX=$(out)" ];
makeFlags = [ "PREFIX=$(out)" "INCLUDEDIR=$(dev)/include" ];
doCheck = false; # tests take a very long time
checkTarget = "test";
patches = [ ./install-on-freebsd.patch ] ;
postInstall = "rm $out/lib/*.a";
meta = with stdenv.lib; {
description = "Extremely fast compression algorithm";
longDescription = ''