Skip to content

Commit 29bbf3f

Browse files
postgresqlPackages.pv_ivm: 1.11 -> 1.12
Release Notes: https://github.com/sraoss/pg_ivm/releases/tag/v1.12 Adds support for PostgreSQL 18.
1 parent bb02654 commit 29bbf3f

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

pkgs/servers/sql/postgresql/ext/pg_ivm.nix

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77

88
postgresqlBuildExtension (finalAttrs: {
99
pname = "pg_ivm";
10-
version = "1.11";
10+
version = "1.12";
1111

1212
src = fetchFromGitHub {
1313
owner = "sraoss";
1414
repo = "pg_ivm";
1515
tag = "v${finalAttrs.version}";
16-
hash = "sha256-fPtDwP+IZ/RQOriRklSvpUnJ8qEwJaxIrcfnAReRQeQ=";
16+
hash = "sha256-UeRcxoUkpPw4EcQXKUxHamjczOaE59d00kSrYsijnH8=";
1717
};
1818

1919
meta = {
@@ -23,11 +23,5 @@ postgresqlBuildExtension (finalAttrs: {
2323
maintainers = with lib.maintainers; [ ivan ];
2424
platforms = postgresql.meta.platforms;
2525
license = lib.licenses.postgresql;
26-
# PostgreSQL 18 support issue upstream: https://github.com/sraoss/pg_ivm/issues/133
27-
# Note: already fixed on `main` branch.
28-
# Check after next package update.
29-
broken = lib.warnIf (finalAttrs.version != "1.11") "Is postgresql18Packages.pg_ivm still broken?" (
30-
lib.versionAtLeast postgresql.version "18"
31-
);
3226
};
3327
})

0 commit comments

Comments
 (0)