mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
build-system: linux-module: Add substitutable keyword.
* guix/build-system/linux-module.scm (linux-module-build) Add substitutable keyword.
This commit is contained in:
parent
11140cf194
commit
87a028100c
1 changed files with 3 additions and 1 deletions
|
@ -126,6 +126,7 @@ (define* (linux-module-build store name inputs
|
|||
(outputs '("out"))
|
||||
(system (%current-system))
|
||||
(guile #f)
|
||||
(substitutable? #t)
|
||||
(imported-modules
|
||||
%linux-module-build-system-modules)
|
||||
(modules '((guix build linux-module-build-system)
|
||||
|
@ -164,7 +165,8 @@ (define guile-for-build
|
|||
#:inputs inputs
|
||||
#:modules imported-modules
|
||||
#:outputs outputs
|
||||
#:guile-for-build guile-for-build))
|
||||
#:guile-for-build guile-for-build
|
||||
#:substitutable? substitutable?))
|
||||
|
||||
(define linux-module-build-system
|
||||
(build-system
|
||||
|
|
Loading…
Reference in a new issue