postgresqlPackages: remove outdated broken conditions

"older than v13" is not important anymore, we don't package v12.
This commit is contained in:
Wolfgang Walther
2025-09-04 10:57:45 +02:00
parent 296f222cf8
commit 01dde1fe6b
2 changed files with 6 additions and 10 deletions
+6 -9
View File
@@ -23,14 +23,11 @@ postgresqlBuildExtension (finalAttrs: {
maintainers = with lib.maintainers; [ ivan ];
platforms = postgresql.meta.platforms;
license = lib.licenses.postgresql;
broken =
lib.versionOlder postgresql.version "13"
||
# PostgreSQL 18 support issue upstream: https://github.com/sraoss/pg_ivm/issues/133
# Note: already fixed on `main` branch.
# Check after next package update.
lib.warnIf (finalAttrs.version != "1.11") "Is postgresql18Packages.pg_ivm still broken?" (
lib.versionAtLeast postgresql.version "18"
);
# PostgreSQL 18 support issue upstream: https://github.com/sraoss/pg_ivm/issues/133
# Note: already fixed on `main` branch.
# Check after next package update.
broken = lib.warnIf (finalAttrs.version != "1.11") "Is postgresql18Packages.pg_ivm still broken?" (
lib.versionAtLeast postgresql.version "18"
);
};
})
@@ -23,6 +23,5 @@ postgresqlBuildExtension (finalAttrs: {
maintainers = with lib.maintainers; [ gaelreyrol ];
platforms = postgresql.meta.platforms;
license = lib.licenses.mpl20;
broken = lib.versionOlder postgresql.version "13";
};
})