postgresqlPackages: remove outdated broken conditions
"older than v13" is not important anymore, we don't package v12.
This commit is contained in:
@@ -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";
|
||||
};
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user