help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

What passes in the inputs to the lambda?


From: jgart
Subject: What passes in the inputs to the lambda?
Date: Sun, 20 Nov 2022 15:10:09 -0600

In the following snippet, what passes in the inputs to the lambda?

(modify-phases %standard-phases
  (replace 'unpack
    (lambda* (#:key inputs #:allow-other-keys)
      (let* ((source (assoc-ref inputs "source"))
             (guile-dir (assoc-ref inputs "guile"))
             (guile (string-append guile-dir "/bin/guile")))
        (invoke guile "--no-auto-compile" source)
        (chdir "bootar"))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]