summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-11-01 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-11-01 04:20:00 -0500
commitbfdbbeb452938691e78f404a7df26521c40179c3 (patch)
treea0c232a06a4c89a224d44b23b90f00c7573a6572 /pkgs/servers/sql
parent5d6d502b47f568d18d8d531e8130727007ad2ecd (diff)
downloadnixpkgs-bfdbbeb452938691e78f404a7df26521c40179c3.tar
nixpkgs-bfdbbeb452938691e78f404a7df26521c40179c3.tar.gz
nixpkgs-bfdbbeb452938691e78f404a7df26521c40179c3.tar.bz2
nixpkgs-bfdbbeb452938691e78f404a7df26521c40179c3.tar.lz
nixpkgs-bfdbbeb452938691e78f404a7df26521c40179c3.tar.xz
nixpkgs-bfdbbeb452938691e78f404a7df26521c40179c3.tar.zst
nixpkgs-bfdbbeb452938691e78f404a7df26521c40179c3.zip
postgresqlPackages.timescaledb: 1.4.2 -> 1.5.0
Changelog: https://github.com/timescale/timescaledb/releases/tag/1.5.0
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/timescaledb.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
index ef3dc4894d7..296e7e0a41a 100644
--- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix
+++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
@@ -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.