summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Kost <alezost@gmail.com>2015-09-03 18:33:51 +0300
committerAlex Kost <alezost@gmail.com>2015-09-18 21:42:07 +0300
commit4f740b677a554595596031d80b46eae032eaafb0 (patch)
tree2e8c1e72ce6e63893d2dbec6bc1cdf2098cd5e58
parentfa394eb99ce3830059e0c7d4d488f63c4887bcd0 (diff)
downloadguix-4f740b677a554595596031d80b46eae032eaafb0.tar.gz
store: Add 'set-build-options*'.
Suggested by: Ludovic Courtès <ludo@gnu.org>.

* guix/store.scm (set-build-options*): New procedure.
-rw-r--r--guix/store.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/guix/store.scm b/guix/store.scm
index 132b8a3ac4..5f37e72589 100644
--- a/guix/store.scm
+++ b/guix/store.scm
@@ -58,6 +58,7 @@
             close-connection
             with-store
             set-build-options
+            set-build-options*
             valid-path?
             query-path-hash
             hash-part->path
@@ -986,6 +987,9 @@ permission bits are kept."
   ;; Monadic variant of 'build-things'.
   (store-lift build-things))
 
+(define set-build-options*
+  (store-lift set-build-options))
+
 (define %guile-for-build
   ;; The derivation of the Guile to be used within the build environment,
   ;; when using 'gexp->derivation' and co.