2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, libtool
|
2018-07-28 15:56:04 -07:00
|
|
|
, boost, capnproto, cctz, clang-unwrapped, double-conversion, gperftools, icu
|
2019-09-22 00:38:09 -07:00
|
|
|
, libcpuid, libxml2, lld, llvm, lz4 , libmysqlclient, openssl, poco, re2, rdkafka
|
2019-05-23 13:06:57 -07:00
|
|
|
, readline, sparsehash, unixODBC, zstd, ninja, jemalloc, brotli, protobuf, xxHash
|
2018-06-11 01:37:06 -07:00
|
|
|
}:
|
2017-03-26 18:06:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "clickhouse";
|
2019-09-28 19:51:52 -07:00
|
|
|
version = "19.13.5.44";
|
2017-03-26 18:06:23 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-08-07 15:54:32 -07:00
|
|
|
owner = "yandex";
|
|
|
|
repo = "ClickHouse";
|
|
|
|
rev = "v${version}-stable";
|
2019-09-28 19:51:52 -07:00
|
|
|
sha256 = "1h0jjpa1wrms5vcgx1vf8fmkc7jjrql1r70dvwr0nw8f7rfyi1l6";
|
2017-03-26 18:06:23 -07:00
|
|
|
};
|
|
|
|
|
2018-08-07 15:54:32 -07:00
|
|
|
nativeBuildInputs = [ cmake libtool ninja ];
|
2017-12-27 07:15:33 -08:00
|
|
|
buildInputs = [
|
2018-07-28 15:56:04 -07:00
|
|
|
boost capnproto cctz clang-unwrapped double-conversion gperftools icu
|
2019-09-22 00:38:09 -07:00
|
|
|
libcpuid libxml2 lld llvm lz4 libmysqlclient openssl poco re2 rdkafka
|
2019-05-23 13:06:57 -07:00
|
|
|
readline sparsehash unixODBC zstd jemalloc brotli protobuf xxHash
|
2017-12-27 07:15:33 -08:00
|
|
|
];
|
2017-03-26 18:06:23 -07:00
|
|
|
|
2018-08-07 15:54:32 -07:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DENABLE_TESTS=OFF"
|
|
|
|
"-DUNBUNDLED=ON"
|
|
|
|
"-DUSE_STATIC_LIBRARIES=OFF"
|
2019-01-05 20:16:10 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
2019-05-23 13:06:57 -07:00
|
|
|
patchShebangs dbms/programs/clang/copy_headers.sh
|
2018-08-07 15:54:32 -07:00
|
|
|
'';
|
2017-03-26 18:06:23 -07:00
|
|
|
|
2018-07-28 15:56:04 -07:00
|
|
|
postInstall = ''
|
|
|
|
rm -rf $out/share/clickhouse-test
|
2018-12-19 06:06:53 -08:00
|
|
|
|
|
|
|
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 15:56:04 -07:00
|
|
|
'';
|
|
|
|
|
2019-01-05 20:16:10 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2017-03-26 18:06:23 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://clickhouse.yandex/;
|
|
|
|
description = "Column-oriented database management system";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|