about summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql/ext
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-16 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-04-16 04:20:00 -0500
commit35eac7e51e1f2cff4ed30b478d09d5e136339c24 (patch)
treea15b215ea7ea27fee04c76868a9cbdc04457d311 /pkgs/servers/sql/postgresql/ext
parent919293492b7162227804b0a95030860af7afbc68 (diff)
downloadnixlib-35eac7e51e1f2cff4ed30b478d09d5e136339c24.tar
nixlib-35eac7e51e1f2cff4ed30b478d09d5e136339c24.tar.gz
nixlib-35eac7e51e1f2cff4ed30b478d09d5e136339c24.tar.bz2
nixlib-35eac7e51e1f2cff4ed30b478d09d5e136339c24.tar.lz
nixlib-35eac7e51e1f2cff4ed30b478d09d5e136339c24.tar.xz
nixlib-35eac7e51e1f2cff4ed30b478d09d5e136339c24.tar.zst
nixlib-35eac7e51e1f2cff4ed30b478d09d5e136339c24.zip
postgresqlPackages.timescaledb: 1.6.1 -> 1.7.0
Changelog: https://github.com/timescale/timescaledb/releases/tag/1.7.0
Diffstat (limited to 'pkgs/servers/sql/postgresql/ext')
-rw-r--r--pkgs/servers/sql/postgresql/ext/timescaledb.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
index 606eaeb65ac7..cda9244e192f 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.6.1";
+  version = "1.7.0";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl ];
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     owner  = "timescale";
     repo   = "timescaledb";
     rev    = "refs/tags/${version}";
-    sha256 = "0k03aqpc1faqlpw46wazv0dy0xja57cv1sr1zwmizw3j3p3s0zdq";
+    sha256 = "0n234ard9sldpbdqvbq2i48xyiyj8ljirsbspsax11f8yzy9ziac";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" ];