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>2023-08-19 01:09:29 -0500
committerGitHub <noreply@github.com>2023-08-19 01:09:29 -0500
commitf7f5506f828ec95c407b4c0a00a614498b843dc0 (patch)
tree36bfd4da5605b9c8d6eadeda1f1f06cd0084f815 /pkgs/servers/sql/postgresql/ext
parentf852d375b7d6eda8a42fa46176de1019547fc330 (diff)
parent109f09412752c7108c1bb954ab0cd8921e723094 (diff)
downloadnixpkgs-f7f5506f828ec95c407b4c0a00a614498b843dc0.tar
nixpkgs-f7f5506f828ec95c407b4c0a00a614498b843dc0.tar.gz
nixpkgs-f7f5506f828ec95c407b4c0a00a614498b843dc0.tar.bz2
nixpkgs-f7f5506f828ec95c407b4c0a00a614498b843dc0.tar.lz
nixpkgs-f7f5506f828ec95c407b4c0a00a614498b843dc0.tar.xz
nixpkgs-f7f5506f828ec95c407b4c0a00a614498b843dc0.tar.zst
nixpkgs-f7f5506f828ec95c407b4c0a00a614498b843dc0.zip
Merge pull request #249757 from 1000101/tsdb
postgresqlPackages.timescaledb: 2.11.1 -> 2.11.2
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 c2c28812a40..a7c136ba691 100644
--- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix
+++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
@@ -13,7 +13,7 @@
 
 stdenv.mkDerivation rec {
   pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}";
-  version = "2.11.1";
+  version = "2.11.2";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl libkrb5 ];
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
     owner = "timescale";
     repo = "timescaledb";
     rev = version;
-    sha256 = "sha256-nThflLfHvcEqJo1dz8PVca0ux7KJOW66nZ3dV1yTOCM=";
+    sha256 = "sha256-c2fztGtl2cLThT0JhHCM0UaYkiWTp5T6TUZ3Au7CG7c=";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]