52 lines
1.8 KiB
Nix
52 lines
1.8 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, postgresql, openssl, libkrb5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "timescaledb-apache";
|
|
version = "2.9.1";
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ postgresql openssl libkrb5 ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "timescale";
|
|
repo = "timescaledb";
|
|
rev = version;
|
|
hash = "sha256-fvVSxDiGZAewyuQ2vZDb0I6tmlDXl6trjZp8+qDBtb8=";
|
|
};
|
|
|
|
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" "-DAPACHE_ONLY=1" ]
|
|
++ lib.optionals stdenv.isDarwin [ "-DLINTER=OFF" ];
|
|
|
|
# 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
|
|
|
|
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
|
|
'';
|
|
|
|
|
|
# timescaledb-2.9.1.so already exists in the lib directory
|
|
# we have no need for the timescaledb.so or control file
|
|
postInstall = ''
|
|
rm $out/lib/timescaledb.so
|
|
rm $out/share/postgresql/extension/timescaledb.control
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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/blob/${version}/CHANGELOG.md";
|
|
maintainers = with maintainers; [ samrose ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = licenses.asl20;
|
|
broken = versionOlder postgresql.version "13";
|
|
};
|
|
}
|