grafts: Mark as non substitutable.
* guix/grafts.scm (graft-derivation/shallow): Pass #:substitutable? to 'build-expression->derivation'.
This commit is contained in:
parent
9300e2e893
commit
7bc5657f84
1 changed files with 5 additions and 0 deletions
|
@ -144,7 +144,12 @@ are not recursively applied to dependencies of DRV."
|
||||||
,@(append (map add-label sources)
|
,@(append (map add-label sources)
|
||||||
(map add-label targets)))
|
(map add-label targets)))
|
||||||
#:outputs outputs
|
#:outputs outputs
|
||||||
|
|
||||||
|
;; Grafts are computationally cheap so no
|
||||||
|
;; need to offload or substitute.
|
||||||
#:local-build? #t
|
#:local-build? #t
|
||||||
|
#:substitutable? #f
|
||||||
|
|
||||||
#:properties properties)))))
|
#:properties properties)))))
|
||||||
(define (item->deriver store item)
|
(define (item->deriver store item)
|
||||||
"Return two values: the derivation that led to ITEM (a store item), and the
|
"Return two values: the derivation that led to ITEM (a store item), and the
|
||||||
|
|
Reference in a new issue