me
/
guix
Archived
1
0
Fork 0

doc: Update the PostgreSQL extension packages example.

* doc/guix.texi (PostgreSQL): Update the extension packages example.
master
Christopher Baines 2020-10-28 13:01:48 +00:00
parent e2f16ea1cf
commit 0105b8624d
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 4 additions and 1 deletions

View File

@ -18676,7 +18676,10 @@ configure the postgresql-service as in this example:
(packages (cons* postgresql %base-packages))
(services
(cons*
(postgresql-service #:extension-packages (list postgis))
(service postgresql-service-type
(postgresql-configuration
(postgresql postgresql-10)
(extension-packages (list postgis))))
%base-services)))
@end lisp