[bug#60720] build-system: copy: Add substitutable keyword.
Commit Message
* guix/build-system/copy.scm (copy-build): Add substitutable keyword.
---
guix/build-system/copy.scm | 3 +++
1 file changed, 3 insertions(+)
--
2.38.1
Comments
Hi,
Jonathan Brielmaier <jonathan.brielmaier@web.de> skribis:
> * guix/build-system/copy.scm (copy-build): Add substitutable keyword.
LGTM, thanks!
Ludo’.
Pushed as 3e8dd0df8cdb693c9b86bcf2b0b1d2239cd83311.
It does not seem to trigger rebuilds of the packages who use
`copy-build-system`.
@@ -2,6 +2,7 @@
;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
;;; Copyright © 2021 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2023 Jonathan Brielmaier <jonathan.brielmaier@web.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -94,6 +95,7 @@ (define* (copy-build name inputs
%standard-phases))
(system (%current-system))
(target #f)
+ (substitutable? #t)
(imported-modules %copy-build-system-modules)
(modules '((guix build copy-build-system)
(guix build utils))))
@@ -129,6 +131,7 @@ (define builder
(gexp->derivation name builder
#:system system
#:target #f
+ #:substitutable? substitutable?
#:guile-for-build guile)))
(define copy-build-system