~ruther/guix-local

cb6ce89e21df4f7ddb8e87d7fb0c3c776120e3eb — Ricardo Wurmus 10 years ago d045755
build-system/r: Support "substitutable?" flag.

* guix/build-system/r.scm (r-build): Support the "substitutable?" flag.
1 files changed, 3 insertions(+), 1 deletions(-)

M guix/build-system/r.scm
M guix/build-system/r.scm => guix/build-system/r.scm +3 -1
@@ 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