1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

doc: cookbook: Add 'use-modules' in gexp example.

* doc/guix-cookbook.texi (A Scheme Crash Course): Add 'use-modules' line
in gexp example.
This commit is contained in:
Ludovic Courtès
2023-08-14 14:57:52 +02:00
parent c3f6dd45d7
commit 3c7d465133

View File

@@ -280,6 +280,9 @@ they provide code to be executed during the package build process. They
look like this:
@lisp
(use-modules (guix gexp) ;so we can write gexps
(gnu packages base)) ;for 'coreutils'
;; Below is a G-expression representing staged code.
#~(begin
;; Invoke 'ls' from the package defined by the 'coreutils'