Skip to content

Commit f7f6917

Browse files
committed
fix(pgrouting): change postgis extensions dependency to 'postgis-all'
Since we merged the multi version PostGIS extensions, the name of the package providing all PostGIS extensions changed from `postgis` to `postgis-all`.
1 parent f6bf009 commit f7f6917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nix/ext/tests/pgrouting.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let
1616
postgresql
1717
postgresql.lib
1818
(installedExtension majorVersion)
19-
self.packages.${pkgs.system}."psql_${majorVersion}/exts/postgis"
19+
self.packages.${pkgs.system}."psql_${majorVersion}/exts/postgis-all"
2020
]
2121
++ lib.optional (postgresql.isOrioleDB
2222
) self.packages.${pkgs.system}."psql_orioledb-17/exts/orioledb";

0 commit comments

Comments
 (0)