lz4: Don't install static library
This commit is contained in:
parent
7c239702b5
commit
b87d5abafd
@ -11,17 +11,21 @@ stdenv.mkDerivation rec {
|
|||||||
owner = "Cyan4973";
|
owner = "Cyan4973";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
buildInputs = stdenv.lib.optional doCheck valgrind;
|
buildInputs = stdenv.lib.optional doCheck valgrind;
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" ];
|
makeFlags = [ "PREFIX=$(out)" "INCLUDEDIR=$(dev)/include" ];
|
||||||
|
|
||||||
doCheck = false; # tests take a very long time
|
doCheck = false; # tests take a very long time
|
||||||
checkTarget = "test";
|
checkTarget = "test";
|
||||||
|
|
||||||
patches = [ ./install-on-freebsd.patch ] ;
|
patches = [ ./install-on-freebsd.patch ] ;
|
||||||
|
|
||||||
|
postInstall = "rm $out/lib/*.a";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Extremely fast compression algorithm";
|
description = "Extremely fast compression algorithm";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user