scripts: Move 'set-build-options-from-command-line*' to (guix scripts build) module.
* guix/scripts/build.scm (set-build-options-from-command-line*): New procedure. * guix/scripts/environment.scm (set-build-options-from-command-line*): Delete.
This commit is contained in:
parent
4d043ab628
commit
2d977638c9
|
@ -37,6 +37,7 @@
|
||||||
#:autoload (guix download) (download-to-store)
|
#:autoload (guix download) (download-to-store)
|
||||||
#:export (%standard-build-options
|
#:export (%standard-build-options
|
||||||
set-build-options-from-command-line
|
set-build-options-from-command-line
|
||||||
|
set-build-options-from-command-line*
|
||||||
show-build-options-help
|
show-build-options-help
|
||||||
|
|
||||||
guix-build))
|
guix-build))
|
||||||
|
@ -139,6 +140,9 @@ options handled by 'set-build-options-from-command-line', and listed in
|
||||||
#:print-build-trace (assoc-ref opts 'print-build-trace?)
|
#:print-build-trace (assoc-ref opts 'print-build-trace?)
|
||||||
#:verbosity (assoc-ref opts 'verbosity)))
|
#:verbosity (assoc-ref opts 'verbosity)))
|
||||||
|
|
||||||
|
(define set-build-options-from-command-line*
|
||||||
|
(store-lift set-build-options-from-command-line))
|
||||||
|
|
||||||
(define %standard-build-options
|
(define %standard-build-options
|
||||||
;; List of standard command-line options for tools that build something.
|
;; List of standard command-line options for tools that build something.
|
||||||
(list (option '(#\L "load-path") #t #f
|
(list (option '(#\L "load-path") #t #f
|
||||||
|
|
|
@ -191,10 +191,6 @@ packages."
|
||||||
(delete-duplicates
|
(delete-duplicates
|
||||||
(append-map transitive-inputs packages)))
|
(append-map transitive-inputs packages)))
|
||||||
|
|
||||||
;; TODO: Deduplicate these.
|
|
||||||
(define set-build-options-from-command-line*
|
|
||||||
(store-lift set-build-options-from-command-line))
|
|
||||||
|
|
||||||
(define (build-inputs inputs opts)
|
(define (build-inputs inputs opts)
|
||||||
"Build the packages in INPUTS using the build options in OPTS."
|
"Build the packages in INPUTS using the build options in OPTS."
|
||||||
(let ((substitutes? (assoc-ref opts 'substitutes?))
|
(let ((substitutes? (assoc-ref opts 'substitutes?))
|
||||||
|
|
Loading…
Reference in New Issue