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-09-08 08:40:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-09-08 08:40:00 -0500
commit234c6e8a8949b309f73dbabfd7a657770035a766 (patch)
treeb07697294fc3f4514e0f11230b47d54ede201a6f /pkgs/servers/sql/postgresql/ext
parent61eb2b639b6a0d6ed141773fb641722c9206e0ad (diff)
downloadnixpkgs-234c6e8a8949b309f73dbabfd7a657770035a766.tar
nixpkgs-234c6e8a8949b309f73dbabfd7a657770035a766.tar.gz
nixpkgs-234c6e8a8949b309f73dbabfd7a657770035a766.tar.bz2
nixpkgs-234c6e8a8949b309f73dbabfd7a657770035a766.tar.lz
nixpkgs-234c6e8a8949b309f73dbabfd7a657770035a766.tar.xz
nixpkgs-234c6e8a8949b309f73dbabfd7a657770035a766.tar.zst
nixpkgs-234c6e8a8949b309f73dbabfd7a657770035a766.zip
postgresqlPackages.timescaledb: 1.7.3 -> 1.7.4
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 61564a69232..76619b83c14 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.3";
+  version = "1.7.4";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl ];
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     owner  = "timescale";
     repo   = "timescaledb";
     rev    = "refs/tags/${version}";
-    sha256 = "1y3w1ap1cxmi691wfz078r2h74pcwf38zs8lr985pfmb25w47q0l";
+    sha256 = "0w0sl5izwic3j1k94xhky2y4wkd8l18m5hcknj5vqxq3ryhxaszc";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" ];