diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-07-26 18:15:13 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-07-26 18:15:13 +0200 |
commit | ac46a1c8e465df81d661632a273d07443aefa24e (patch) | |
tree | e969b5f54a1d0607dd867a646e557dc1579763e6 /doc | |
parent | 3b92441bc16f335b0a8fb2b3f6c660ec7e16df4f (diff) | |
parent | 92526ade57e0bd23ab4025b8532511ef80df5fba (diff) | |
download | patches-ac46a1c8e465df81d661632a273d07443aefa24e.tar patches-ac46a1c8e465df81d661632a273d07443aefa24e.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index f9b3ef0e55..2df4064524 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -12156,7 +12156,7 @@ secure connections to the print server. Suppose you want to enable the Web interface of CUPS and also add support for Epson printers @i{via} the @code{escpr} package and for HP -printers @i{via} the @code{hplip} package. You can do that directly, +printers @i{via} the @code{hplip-minimal} package. You can do that directly, like this (you need to use the @code{(gnu packages cups)} module): @example @@ -12164,9 +12164,13 @@ like this (you need to use the @code{(gnu packages cups)} module): (cups-configuration (web-interface? #t) (extensions - (list cups-filters escpr hplip)))) + (list cups-filters escpr hplip-minimal)))) @end example +Note: If you wish to use the Qt5 based GUI which comes with the hplip +package then it is suggested that you install the @code{hplip} package, +either in your OS configuration file or as your user. + The available configuration parameters follow. Each parameter definition is preceded by its type; for example, @samp{string-list foo} indicates that the @code{foo} parameter should be specified as a list of |