summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-01-08 12:48:51 -0500
committerGitHub <noreply@github.com>2021-01-08 12:48:51 -0500
commit40842049e8b883b5c218fb3a813d6a6b85dc3615 (patch)
tree7b5d780cfeca0dd64cf0fa0810a3e21680dc5c88
parent85b2053a31eecfc3ef285d53cbbcfd0dbc8484f4 (diff)
parentff1d77d7882049fb84c22752c0ea60f19908bb0e (diff)
downloadnixpkgs-40842049e8b883b5c218fb3a813d6a6b85dc3615.tar
nixpkgs-40842049e8b883b5c218fb3a813d6a6b85dc3615.tar.gz
nixpkgs-40842049e8b883b5c218fb3a813d6a6b85dc3615.tar.bz2
nixpkgs-40842049e8b883b5c218fb3a813d6a6b85dc3615.tar.lz
nixpkgs-40842049e8b883b5c218fb3a813d6a6b85dc3615.tar.xz
nixpkgs-40842049e8b883b5c218fb3a813d6a6b85dc3615.tar.zst
nixpkgs-40842049e8b883b5c218fb3a813d6a6b85dc3615.zip
Merge pull request #108784 from 1000101/tsdb
postgresqlPackages.timescaledb: 1.7.4 -> 2.0.0
-rw-r--r--pkgs/servers/sql/postgresql/ext/timescaledb.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
index 76619b83c14..55d2cd81a21 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.7.4";
+  version = "2.0.0";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl ];
@@ -17,10 +17,11 @@ stdenv.mkDerivation rec {
     owner  = "timescale";
     repo   = "timescaledb";
     rev    = "refs/tags/${version}";
-    sha256 = "0w0sl5izwic3j1k94xhky2y4wkd8l18m5hcknj5vqxq3ryhxaszc";
+    sha256 = "0id1h46490mjqp8ijhv2qswpdli2nh2z15mgh6gfc2wl3bhwhi1g";
   };
 
-  cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" ];
+  # -DWARNINGS_AS_ERRORS=OFF to be removed once https://github.com/timescale/timescaledb/issues/2770 is fixed in upstream
+  cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DWARNINGS_AS_ERRORS=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.