diff --git a/pkgs/servers/sql/postgresql/ext/rum.nix b/pkgs/servers/sql/postgresql/ext/rum.nix index 99f0d336d525..ef2df4c7f458 100644 --- a/pkgs/servers/sql/postgresql/ext/rum.nix +++ b/pkgs/servers/sql/postgresql/ext/rum.nix @@ -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;