postgresqlPackages.timescaledb: 1.4.2 -> 1.5.0

Changelog: https://github.com/timescale/timescaledb/releases/tag/1.5.0
This commit is contained in:
Mario Rodas 2019-11-01 04:20:00 -05:00
parent 5d6d502b47
commit bfdbbeb452
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -8,7 +8,7 @@
stdenv.mkDerivation rec {
pname = "timescaledb";
version = "1.4.2";
version = "1.5.0";
nativeBuildInputs = [ cmake ];
buildInputs = [ postgresql openssl ];
@ -17,10 +17,10 @@ stdenv.mkDerivation rec {
owner = "timescale";
repo = "timescaledb";
rev = "refs/tags/${version}";
sha256 = "06mchpfjh4kskxq5r8b84870gl37xcqdf14n96qjb4nbyw9l8xcc";
sha256 = "0qw7yp2vh3fkx43zlnj8xsvd0d68rcmdcl3p9jpmr97hyl376xf2";
};
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" ];
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=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.