summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-12-08 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-12-08 04:20:00 +0000
commit0bf7da2e189174b8b28dd1d575c1d45a7143e95f (patch)
treeb6dea1f10f704c8ba540a241530093d709f78944 /pkgs/servers/sql
parent9e8961e5607402ed0ff98e283ef485ac8f22e226 (diff)
downloadnixpkgs-0bf7da2e189174b8b28dd1d575c1d45a7143e95f.tar
nixpkgs-0bf7da2e189174b8b28dd1d575c1d45a7143e95f.tar.gz
nixpkgs-0bf7da2e189174b8b28dd1d575c1d45a7143e95f.tar.bz2
nixpkgs-0bf7da2e189174b8b28dd1d575c1d45a7143e95f.tar.lz
nixpkgs-0bf7da2e189174b8b28dd1d575c1d45a7143e95f.tar.xz
nixpkgs-0bf7da2e189174b8b28dd1d575c1d45a7143e95f.tar.zst
nixpkgs-0bf7da2e189174b8b28dd1d575c1d45a7143e95f.zip
postgresqlPackages.timescaledb: 2.5.0 -> 2.5.1
https://github.com/timescale/timescaledb/releases/tag/2.5.1
Diffstat (limited to 'pkgs/servers/sql')
-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 eb02b05e5dc..6513617ee26 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 = "2.5.0";
+  version = "2.5.1";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl libkrb5 ];
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
     repo   = "timescaledb";
     # some branches are named like tags which confuses git
     rev    = "refs/tags/${version}";
-    sha256 = "0j8fbhf69q0074c02ilzdrhwc1ciyw6dq48217xxv274df2lcxzd";
+    sha256 = "sha256-3G/foe4TlKEKP0Vi60oD7ZoxYdkNipyoOhGoF+GojZw=";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]