Unverified Commit 01dde1fe authored by Wolfgang Walther's avatar Wolfgang Walther
Browse files

postgresqlPackages: remove outdated broken conditions

"older than v13" is not important anymore, we don't package v12.
parent 296f222c
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
@@ -23,13 +23,10 @@ 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?" (
    broken = lib.warnIf (finalAttrs.version != "1.11") "Is postgresql18Packages.pg_ivm still broken?" (
      lib.versionAtLeast postgresql.version "18"
    );
  };
+0 −1
Original line number Diff line number Diff line
@@ -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";
  };
})