about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-09-13 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-09-13 04:20:00 -0500
commit0398993a3242730708bc1f92104b03c6c9487735 (patch)
treeeba5af40dce1c9b861e3c4a2b888929c435d4103 /pkgs/servers
parentcef857e8b7ed69fefa99019e79f63ef5d744bacc (diff)
downloadnixlib-0398993a3242730708bc1f92104b03c6c9487735.tar
nixlib-0398993a3242730708bc1f92104b03c6c9487735.tar.gz
nixlib-0398993a3242730708bc1f92104b03c6c9487735.tar.bz2
nixlib-0398993a3242730708bc1f92104b03c6c9487735.tar.lz
nixlib-0398993a3242730708bc1f92104b03c6c9487735.tar.xz
nixlib-0398993a3242730708bc1f92104b03c6c9487735.tar.zst
nixlib-0398993a3242730708bc1f92104b03c6c9487735.zip
postgresqlPackages.timescaledb: 1.4.1 -> 1.4.2
Changelog: https://github.com/timescale/timescaledb/releases/tag/1.4.2
Diffstat (limited to 'pkgs/servers')
-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 5f9959958206..ef3dc4894d7b 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.1";
+  version = "1.4.2";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl ];
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     owner  = "timescale";
     repo   = "timescaledb";
     rev    = "refs/tags/${version}";
-    sha256 = "1gbca0fyaxjkwijdp2ah4iykwq5xabz9kkf8ak76sif4lz64y54b";
+    sha256 = "06mchpfjh4kskxq5r8b84870gl37xcqdf14n96qjb4nbyw9l8xcc";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" ];