2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, postgresql, openssl }:
|
2017-09-19 00:42:16 +01:00
|
|
|
|
2017-09-29 11:16:17 +01:00
|
|
|
# # To enable on NixOS:
|
|
|
|
# config.services.postgresql = {
|
|
|
|
# extraPlugins = [ pkgs.timescaledb ];
|
|
|
|
# extraConfig = "shared_preload_libraries = 'timescaledb'";
|
|
|
|
# }
|
|
|
|
|
2017-09-19 00:42:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "timescaledb";
|
2021-04-14 05:20:00 +01:00
|
|
|
version = "2.2.0";
|
2017-09-19 00:42:16 +01:00
|
|
|
|
2018-04-02 08:40:07 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-11-04 00:49:00 +00:00
|
|
|
buildInputs = [ postgresql openssl ];
|
2017-09-19 00:42:16 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-04-02 08:40:07 +01:00
|
|
|
owner = "timescale";
|
|
|
|
repo = "timescaledb";
|
|
|
|
rev = "refs/tags/${version}";
|
2021-04-14 05:20:00 +01:00
|
|
|
sha256 = "0gl2jjk9k0s5h7s4yq1qb60lvcqvhp88rh1fhlpyx1vm1hifhhik";
|
2017-09-19 00:42:16 +01:00
|
|
|
};
|
|
|
|
|
2021-04-14 05:20:00 +01:00
|
|
|
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ "-DLINTER=OFF" ];
|
2019-06-14 22:20:00 +01:00
|
|
|
|
2018-04-02 08:40:07 +01:00
|
|
|
# Fix the install phase which tries to install into the pgsql extension dir,
|
|
|
|
# and cannot be manually overridden. This is rather fragile but works OK.
|
2021-04-14 05:20:00 +01:00
|
|
|
postPatch = ''
|
2018-04-02 08:40:07 +01:00
|
|
|
for x in CMakeLists.txt sql/CMakeLists.txt; do
|
|
|
|
substituteInPlace "$x" \
|
2019-07-01 15:18:03 +01:00
|
|
|
--replace 'DESTINATION "''${PG_SHAREDIR}/extension"' "DESTINATION \"$out/share/postgresql/extension\""
|
2018-04-02 08:40:07 +01:00
|
|
|
done
|
|
|
|
|
2019-03-25 21:20:00 +00:00
|
|
|
for x in src/CMakeLists.txt src/loader/CMakeLists.txt tsl/src/CMakeLists.txt; do
|
2018-04-02 08:40:07 +01:00
|
|
|
substituteInPlace "$x" \
|
|
|
|
--replace 'DESTINATION ''${PG_PKGLIBDIR}' "DESTINATION \"$out/lib\""
|
|
|
|
done
|
2017-09-19 00:42:16 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-29 11:16:17 +01:00
|
|
|
description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.timescale.com/";
|
2021-04-14 05:20:00 +01:00
|
|
|
changelog = "https://github.com/timescale/timescaledb/raw/${version}/CHANGELOG.md";
|
2019-08-02 06:49:52 +01:00
|
|
|
maintainers = with maintainers; [ volth marsam ];
|
2019-03-25 21:20:00 +00:00
|
|
|
platforms = postgresql.meta.platforms;
|
2018-11-04 13:30:14 +00:00
|
|
|
license = licenses.asl20;
|
2017-09-19 00:42:16 +01:00
|
|
|
};
|
|
|
|
}
|