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-09-22 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-09-22 04:20:00 +0000
commitdaaca707452a4290ba76c39f352408b0ec35d9c7 (patch)
treedc9b73cb68977a6fbe5560af63751f3fa1e090a4 /pkgs/servers/sql/postgresql
parent47a896f3c72ee5a528e496175eb4d949867122d3 (diff)
downloadnixlib-daaca707452a4290ba76c39f352408b0ec35d9c7.tar
nixlib-daaca707452a4290ba76c39f352408b0ec35d9c7.tar.gz
nixlib-daaca707452a4290ba76c39f352408b0ec35d9c7.tar.bz2
nixlib-daaca707452a4290ba76c39f352408b0ec35d9c7.tar.lz
nixlib-daaca707452a4290ba76c39f352408b0ec35d9c7.tar.xz
nixlib-daaca707452a4290ba76c39f352408b0ec35d9c7.tar.zst
nixlib-daaca707452a4290ba76c39f352408b0ec35d9c7.zip
postgresql16Packages.pg_partman: 4.7.4 -> 5.0.0
Diff: https://github.com/pgpartman/pg_partman/compare/refs/tags/v4.7.4...v5.0.0

Changelog: https://github.com/pgpartman/pg_partman/blob/v5.0.0/CHANGELOG.md
Diffstat (limited to 'pkgs/servers/sql/postgresql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pg_partman.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pg_partman.nix b/pkgs/servers/sql/postgresql/ext/pg_partman.nix
index b288a27baf89..8a34469b5d1f 100644
--- a/pkgs/servers/sql/postgresql/ext/pg_partman.nix
+++ b/pkgs/servers/sql/postgresql/ext/pg_partman.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   pname = "pg_partman";
-  version = "4.7.4";
+  version = "5.0.0";
 
   buildInputs = [ postgresql ];
 
@@ -10,13 +10,13 @@ stdenv.mkDerivation rec {
     owner  = "pgpartman";
     repo   = pname;
     rev    = "refs/tags/v${version}";
-    sha256 = "sha256-DdE/hqCrju678Xk3xXGVFhKQM3x9skQQKolNJ2/3gbs=";
+    sha256 = "sha256-T7+cPi8LIftWVwI9mi0LAwWCTxp/r6iyKT1wKO/Ztbk=";
   };
 
   installPhase = ''
     mkdir -p $out/{lib,share/postgresql/extension}
 
-    cp src/*.so      $out/lib
+    cp src/*${postgresql.dlSuffix} $out/lib
     cp updates/*     $out/share/postgresql/extension
     cp -r sql/*      $out/share/postgresql/extension
     cp *.control     $out/share/postgresql/extension
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Partition management extension for PostgreSQL";
     homepage    = "https://github.com/pgpartman/pg_partman";
-    changelog   = "https://github.com/pgpartman/pg_partman/raw/v${version}/CHANGELOG.txt";
+    changelog   = "https://github.com/pgpartman/pg_partman/blob/v${version}/CHANGELOG.md";
     maintainers = with maintainers; [ ggpeti ];
     platforms   = postgresql.meta.platforms;
     license     = licenses.postgresql;