diff options
author | Rostislav Svoboda <rostislav.svoboda@gmail.com> | 2024-03-12 17:00:15 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-03-16 22:39:30 +0000 |
commit | 4fe9aae225fa4ee0416d7cfa984bda8fcded8436 (patch) | |
tree | e96326362eded937788d7dcd13cb962d4ae9dba3 /doc/guix.texi | |
parent | b3a097ad16fd712310ccb9eb1d0c3e9125d9fbcf (diff) | |
download | guix-4fe9aae225fa4ee0416d7cfa984bda8fcded8436.tar.gz |
doc: Correct the "guix package --install-from-expression" example.
* doc/guix.texi (Invoking @command{guix package}): Correct the module where 'guile-final' is defined. It is actually located in (gnu packages commencement) rather than in the (gnu packages base). Change-Id: I7747106916d53dcbe296b7302983c5013eb2926d Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 796ac0028f..17130845bd 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -3445,7 +3445,7 @@ Install the package @var{exp} evaluates to. @var{exp} must be a Scheme expression that evaluates to a @code{<package>} object. This option is notably useful to disambiguate between same-named variants of a package, with expressions such as -@code{(@@ (gnu packages base) guile-final)}. +@code{(@@ (gnu packages commencement) guile-final)}. Note that this option installs the first output of the specified package, which may be insufficient when needing a specific output of a |