Commit 30151dae authored by Dee Anzorge's avatar Dee Anzorge
Browse files

postgresqlPackages.rum: 1.3.14 -> 1.3.15

parent 122141d3
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -8,13 +8,13 @@

postgresqlBuildExtension (finalAttrs: {
  pname = "rum";
  version = "1.3.14";
  version = "1.3.15";

  src = fetchFromGitHub {
    owner = "postgrespro";
    repo = "rum";
    tag = finalAttrs.version;
    hash = "sha256-VsfpxQqRBu9bIAP+TfMRXd+B3hSjuhU2NsutocNiCt8=";
    hash = "sha256-iOx7u0JURBUUFerRlg3DuidFeBmGFOXz8mu20mQeopo=";
  };

  makeFlags = [ "USE_PGXS=1" ];
@@ -29,11 +29,6 @@ postgresqlBuildExtension (finalAttrs: {
  };

  meta = {
    # PostgreSQL 18 support issue upstream: https://github.com/postgrespro/rum/issues/156
    # Check after next package update.
    broken = lib.warnIf (finalAttrs.version != "1.3.14") "Is postgresql18Packages.rum still broken?" (
      lib.versionAtLeast postgresql.version "18"
    );
    description = "Full text search index method for PostgreSQL";
    homepage = "https://github.com/postgrespro/rum";
    license = lib.licenses.postgresql;