nixpkgs/pkgs/servers/clickhouse/default.nix

75 lines
2.7 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, libtool, llvm-bintools, ninja
2020-07-07 16:57:20 +00:00
, boost, brotli, capnproto, cctz, clang-unwrapped, double-conversion
, icu, jemalloc, libcpuid, libxml2, lld, llvm, lz4, libmysqlclient, openssl, perl
, poco, protobuf, python3, rapidjson, re2, rdkafka, readline, sparsehash, unixODBC
, xxHash, zstd
2018-06-11 08:37:06 +00:00
}:
2017-03-27 01:06:23 +00:00
stdenv.mkDerivation rec {
pname = "clickhouse";
version = "21.3.11.5";
2017-03-27 01:06:23 +00:00
broken = stdenv.buildPlatform.is32bit; # not supposed to work on 32-bit https://github.com/ClickHouse/ClickHouse/pull/23959#issuecomment-835343685
2017-03-27 01:06:23 +00:00
src = fetchFromGitHub {
2020-07-07 16:57:20 +00:00
owner = "ClickHouse";
repo = "ClickHouse";
rev = "v${version}-lts";
2020-07-07 16:57:20 +00:00
fetchSubmodules = true;
sha256 = "sha256-V62Z82p21qtvSOsoXM225/Wkc9F+dvVMz0xpVjhgZVo=";
2017-03-27 01:06:23 +00:00
};
nativeBuildInputs = [ cmake libtool llvm-bintools ninja ];
buildInputs = [
2020-07-07 16:57:20 +00:00
boost brotli capnproto cctz clang-unwrapped double-conversion
icu jemalloc libcpuid libxml2 lld llvm lz4 libmysqlclient openssl perl
poco protobuf python3 rapidjson re2 rdkafka readline sparsehash unixODBC
xxHash zstd
];
2017-03-27 01:06:23 +00:00
2020-07-07 16:57:20 +00:00
postPatch = ''
patchShebangs src/
substituteInPlace src/Storages/System/StorageSystemLicenses.sh \
--replace 'git rev-parse --show-toplevel' '$src'
substituteInPlace utils/check-style/check-duplicate-includes.sh \
--replace 'git rev-parse --show-toplevel' '$src'
substituteInPlace utils/check-style/check-ungrouped-includes.sh \
--replace 'git rev-parse --show-toplevel' '$src'
substituteInPlace utils/generate-ya-make/generate-ya-make.sh \
--replace 'git rev-parse --show-toplevel' '$src'
substituteInPlace utils/list-licenses/list-licenses.sh \
--replace 'git rev-parse --show-toplevel' '$src'
substituteInPlace utils/check-style/check-style \
--replace 'git rev-parse --show-toplevel' '$src'
'';
cmakeFlags = [
"-DENABLE_TESTS=OFF"
2020-12-05 12:45:15 +00:00
"-DENABLE_EMBEDDED_COMPILER=ON"
"-USE_INTERNAL_LLVM_LIBRARY=OFF"
];
2018-07-28 22:56:04 +00:00
postInstall = ''
rm -rf $out/share/clickhouse-test
sed -i -e '\!<log>/var/log/clickhouse-server/clickhouse-server\.log</log>!d' \
$out/etc/clickhouse-server/config.xml
substituteInPlace $out/etc/clickhouse-server/config.xml \
--replace "<errorlog>/var/log/clickhouse-server/clickhouse-server.err.log</errorlog>" "<console>1</console>"
2018-07-28 22:56:04 +00:00
'';
hardeningDisable = [ "format" ];
# Builds in 7+h with 2 cores, and ~20m with a big-parallel builder.
requiredSystemFeatures = [ "big-parallel" ];
meta = with lib; {
2020-07-08 08:19:43 +00:00
homepage = "https://clickhouse.tech/";
2017-03-27 01:06:23 +00:00
description = "Column-oriented database management system";
license = licenses.asl20;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}