nixpkgs/pkgs/servers/clickhouse/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2018-07-28 22:56:04 +00:00
{ stdenv, fetchFromGitHub, cmake, libtool
, boost, capnproto, cctz, clang-unwrapped, double-conversion, gperftools, icu
, libcpuid, libxml2, lld, llvm, lz4 , mysql, openssl, poco, re2, rdkafka
, readline, sparsehash, unixODBC, zstd
2018-06-11 08:37:06 +00:00
}:
2017-03-27 01:06:23 +00:00
stdenv.mkDerivation rec {
name = "clickhouse-${version}";
2018-07-28 22:56:04 +00:00
version = "18.1.0";
2017-03-27 01:06:23 +00:00
src = fetchFromGitHub {
owner = "yandex";
repo = "ClickHouse";
rev = "v${version}-stable";
2018-07-28 22:56:04 +00:00
sha256 = "1vsfnggf69xh91ndycdxwfz6m2bs7psaxf2bh04svgk1vzj2z4l0";
2017-03-27 01:06:23 +00:00
};
nativeBuildInputs = [ cmake libtool ];
buildInputs = [
2018-07-28 22:56:04 +00:00
boost capnproto cctz clang-unwrapped double-conversion gperftools icu
libcpuid libxml2 lld llvm lz4 mysql.connector-c openssl poco re2 rdkafka
readline sparsehash unixODBC zstd
];
2017-03-27 01:06:23 +00:00
cmakeFlags = [ "-DENABLE_TESTS=OFF" "-DUNBUNDLED=ON" "-DUSE_STATIC_LIBRARIES=OFF" ];
2018-07-28 22:56:04 +00:00
postInstall = ''
rm -rf $out/share/clickhouse-test
'';
2017-03-27 01:06:23 +00: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;
};
}