diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-03-21 23:38:04 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-04-05 18:21:23 +0200 |
commit | d6a3818761736449a27eb44938537798f6f4e85b (patch) | |
tree | 9e5d4ca5bcd21bb7ea1c34a6be9059ba84b88af8 /doc | |
parent | 69b8feabcf838ce935e914db653e275c0c4f562f (diff) | |
download | guix-d6a3818761736449a27eb44938537798f6f4e85b.tar guix-d6a3818761736449a27eb44938537798f6f4e85b.tar.gz |
build-system/channel: Add support for additional channels.
Until now, ‘channel-build-system’ would assume a single channel, the
‘guix’ channel. This change lets users specify additional channels
using the #:channels parameter.
* guix/build-system/channel.scm (build-channels): Add #:channels and
honor it.
(channel-build-system): In ‘lower’, add #:channels and honor it.
* doc/guix.texi (Build Systems): Document it.
Change-Id: I36c1d19cbeee02a4d1144de089b78df0390774a0
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 6f95270fa0..e2d578751b 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -10466,7 +10466,10 @@ field (@pxref{Channels}); alternatively, its source can be a directory name, in which case an additional @code{#:commit} argument must be supplied to specify the commit being built (a hexadecimal string). -The resulting package is a Guix instance of the given channel, similar +Optionally, a @code{#:channels} argument specifying additional channels +can be provided. + +The resulting package is a Guix instance of the given channel(s), similar to how @command{guix time-machine} would build it. @end defvar |