gnu: configure-layer.rkt: Adjust indentation.

* gnu/packages/racket.scm (configure-layer.rkt): Wrap 'command-line' in
'define-values' to reduce rightward drift.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Philip McGrath 2022-02-27 16:29:05 -05:00 committed by Liliana Marie Prikler
parent 049a27d8a8
commit f6cd4279a0
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -927,6 +927,7 @@ languages such as Typed Racket, R5RS and R6RS Scheme, Algol 60, and Datalog.")
;; Guile's reader doesn't support #rx"racket"
(regexp "racket"))
(define extra-foreign-lib-search-dirs '())
(define-values [parent-layer prefix]
(command-line
#:once-each
[("--extra-foreign-lib-search-dirs") dir-list
@ -934,6 +935,7 @@ languages such as Typed Racket, R5RS and R6RS Scheme, Algol 60, and Datalog.")
(set! extra-foreign-lib-search-dirs
(call-with-input-string dir-list read))]
#:args (parent-layer prefix)
(values parent-layer prefix)))
(let* ([config
(for/fold
([config (file->value (build-path parent-layer
@ -1007,4 +1009,4 @@ languages such as Typed Racket, R5RS and R6RS Scheme, Algol 60, and Datalog.")
(call-with-output-file*
new-config-pth
(lambda (out)
(pretty-write config out))))))))
(pretty-write config out)))))))