diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-03-31 15:44:59 +0200 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-03-31 15:47:19 +0200 |
commit | cb6ce89e21df4f7ddb8e87d7fb0c3c776120e3eb (patch) | |
tree | 107b11b3e6e55bdf298b446070b2541e2836a757 | |
parent | d0457553d5e245f1f24911ac2f8c465338a2c696 (diff) | |
download | guix-cb6ce89e21df4f7ddb8e87d7fb0c3c776120e3eb.tar guix-cb6ce89e21df4f7ddb8e87d7fb0c3c776120e3eb.tar.gz |
build-system/r: Support "substitutable?" flag.
* guix/build-system/r.scm (r-build): Support the "substitutable?" flag.
-rw-r--r-- | guix/build-system/r.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/build-system/r.scm b/guix/build-system/r.scm index a8ca354227..e8269fdeb1 100644 --- a/guix/build-system/r.scm +++ b/guix/build-system/r.scm @@ -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 |