nixpkgs/pkgs/servers/sql/postgresql/ext/timescaledb.nix

49 lines
1.7 KiB
Nix
Raw Normal View History

{ 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 {
pname = "timescaledb";
version = "2.2.0";
2017-09-19 00:42:16 +01:00
nativeBuildInputs = [ cmake ];
buildInputs = [ postgresql openssl ];
2017-09-19 00:42:16 +01:00
src = fetchFromGitHub {
owner = "timescale";
repo = "timescaledb";
rev = "refs/tags/${version}";
sha256 = "0gl2jjk9k0s5h7s4yq1qb60lvcqvhp88rh1fhlpyx1vm1hifhhik";
2017-09-19 00:42:16 +01:00
};
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" ]
++ lib.optionals stdenv.isDarwin [ "-DLINTER=OFF" ];
2019-06-14 22:20:00 +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.
postPatch = ''
for x in CMakeLists.txt sql/CMakeLists.txt; do
substituteInPlace "$x" \
--replace 'DESTINATION "''${PG_SHAREDIR}/extension"' "DESTINATION \"$out/share/postgresql/extension\""
done
2019-03-25 21:20:00 +00:00
for x in src/CMakeLists.txt src/loader/CMakeLists.txt tsl/src/CMakeLists.txt; do
substituteInPlace "$x" \
--replace 'DESTINATION ''${PG_PKGLIBDIR}' "DESTINATION \"$out/lib\""
done
2017-09-19 00:42:16 +01: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";
homepage = "https://www.timescale.com/";
changelog = "https://github.com/timescale/timescaledb/raw/${version}/CHANGELOG.md";
maintainers = with maintainers; [ volth marsam ];
2019-03-25 21:20:00 +00:00
platforms = postgresql.meta.platforms;
license = licenses.asl20;
2017-09-19 00:42:16 +01:00
};
}