build-system/r: Support "substitutable?" flag.
* guix/build-system/r.scm (r-build): Support the "substitutable?" flag.
This commit is contained in:
parent
d0457553d5
commit
cb6ce89e21
|
@ -101,6 +101,7 @@ release corresponding to NAME and VERSION."
|
|||
(search-paths '())
|
||||
(system (%current-system))
|
||||
(guile #f)
|
||||
(substitutable? #t)
|
||||
(imported-modules %r-build-system-modules)
|
||||
(modules '((guix build r-build-system)
|
||||
(guix build utils))))
|
||||
|
@ -140,7 +141,8 @@ release corresponding to NAME and VERSION."
|
|||
#:system system
|
||||
#:modules imported-modules
|
||||
#:outputs outputs
|
||||
#:guile-for-build guile-for-build))
|
||||
#:guile-for-build guile-for-build
|
||||
#:substitutable? substitutable?))
|
||||
|
||||
(define r-build-system
|
||||
(build-system
|
||||
|
|
Loading…
Reference in New Issue