clickhouse: use system LLVM

Building LLVM pieces is a huge contributor to build times, and probably
bloats binary size as well. Fortunately, there's a knob for this
specific thing (-DUNBUNDLED=ON seems broken and requires some libraries
which aren't packaged for Nix at the moment).

Hopefully this will make clickhouse able to build on OfBorg.
This commit is contained in:
Luke Granger-Brown 2020-11-28 20:38:40 +00:00
parent e145bb2580
commit 6e39a67aec

View file

@ -46,6 +46,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [
"-DENABLE_TESTS=OFF"
"-DUSE_INTERNAL_LLVM_LIBRARY=OFF"
];
postInstall = ''