build-system: copy: Add substitutable keyword.
* guix/build-system/copy.scm (copy-build): Add substitutable keyword.
This commit is contained in:
parent
1bb9394071
commit
3e8dd0df8c
1 changed files with 3 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2021 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2021 Ludovic Courtès <ludo@gnu.org>
|
||||||
|
;;; Copyright © 2023 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -94,6 +95,7 @@
|
||||||
%standard-phases))
|
%standard-phases))
|
||||||
(system (%current-system))
|
(system (%current-system))
|
||||||
(target #f)
|
(target #f)
|
||||||
|
(substitutable? #t)
|
||||||
(imported-modules %copy-build-system-modules)
|
(imported-modules %copy-build-system-modules)
|
||||||
(modules '((guix build copy-build-system)
|
(modules '((guix build copy-build-system)
|
||||||
(guix build utils))))
|
(guix build utils))))
|
||||||
|
@ -129,6 +131,7 @@
|
||||||
(gexp->derivation name builder
|
(gexp->derivation name builder
|
||||||
#:system system
|
#:system system
|
||||||
#:target #f
|
#:target #f
|
||||||
|
#:substitutable? substitutable?
|
||||||
#:guile-for-build guile)))
|
#:guile-for-build guile)))
|
||||||
|
|
||||||
(define copy-build-system
|
(define copy-build-system
|
||||||
|
|
Reference in a new issue