about summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-10-13 08:42:37 -0500
committerGitHub <noreply@github.com>2023-10-13 08:42:37 -0500
commita0acbbbf677d838c72178d84997c9fff61c21191 (patch)
treeb85b263740fe84ff7d474d05e2f93d544c0ca429 /pkgs/servers/sql/postgresql
parentb52131dbbea6ae536c57fbccb89c8994ac0ae9cb (diff)
parent1011a8c946136760db79adb15eca5360027ff374 (diff)
downloadnixlib-a0acbbbf677d838c72178d84997c9fff61c21191.tar
nixlib-a0acbbbf677d838c72178d84997c9fff61c21191.tar.gz
nixlib-a0acbbbf677d838c72178d84997c9fff61c21191.tar.bz2
nixlib-a0acbbbf677d838c72178d84997c9fff61c21191.tar.lz
nixlib-a0acbbbf677d838c72178d84997c9fff61c21191.tar.xz
nixlib-a0acbbbf677d838c72178d84997c9fff61c21191.tar.zst
nixlib-a0acbbbf677d838c72178d84997c9fff61c21191.zip
Merge pull request #260626 from marsam/update-timescaledb
postgresqlPackages.timescaledb: 2.12.0 -> 2.12.1
Diffstat (limited to 'pkgs/servers/sql/postgresql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/timescaledb.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
index 863e22f18b50..efe3c431dca0 100644
--- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix
+++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}";
-  version = "2.12.0";
+  version = "2.12.1";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl libkrb5 ];
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     owner = "timescale";
     repo = "timescaledb";
     rev = version;
-    sha256 = "sha256-e4Sq5VzX5YPiFzG4T8OcCqzgxaWsyVeB21GAKl0aPDk=";
+    hash = "sha256-vl9DTbmRMs+2kpcCm7hY9Xd356bo2TlMzH4zWc6r8mQ=";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space";
     homepage = "https://www.timescale.com/";
-    changelog = "https://github.com/timescale/timescaledb/raw/${version}/CHANGELOG.md";
+    changelog = "https://github.com/timescale/timescaledb/blob/${version}/CHANGELOG.md";
     maintainers = with maintainers; [ marsam ];
     platforms = postgresql.meta.platforms;
     license = with licenses; if enableUnfree then tsl else asl20;