mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05: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"))
|
(outputs '("out"))
|
||||||
(system (%current-system))
|
(system (%current-system))
|
||||||
(guile #f)
|
(guile #f)
|
||||||
|
(substitutable? #t)
|
||||||
(imported-modules
|
(imported-modules
|
||||||
%linux-module-build-system-modules)
|
%linux-module-build-system-modules)
|
||||||
(modules '((guix build linux-module-build-system)
|
(modules '((guix build linux-module-build-system)
|
||||||
|
@ -164,7 +165,8 @@ (define guile-for-build
|
||||||
#:inputs inputs
|
#:inputs inputs
|
||||||
#:modules imported-modules
|
#:modules imported-modules
|
||||||
#:outputs outputs
|
#:outputs outputs
|
||||||
#:guile-for-build guile-for-build))
|
#:guile-for-build guile-for-build
|
||||||
|
#:substitutable? substitutable?))
|
||||||
|
|
||||||
(define linux-module-build-system
|
(define linux-module-build-system
|
||||||
(build-system
|
(build-system
|
||||||
|
|
Loading…
Reference in a new issue