gexp: 'compiled-modules' honors extensions.
Fixes a regression introduced in
2eafeb2f3d
whereby extensions would not be
added as inputs of the resulting derivation.
* guix/gexp.scm (compiled-modules): Append EXTENSIONS to the second
argument of 'gexp-with-hidden-inputs'.
This commit is contained in:
parent
2eafeb2f3d
commit
bfd17ecddd
1 changed files with 2 additions and 1 deletions
|
@ -1764,7 +1764,8 @@ TARGET, a GNU triplet."
|
||||||
|
|
||||||
(load-from-directory ".")
|
(load-from-directory ".")
|
||||||
(process-directory "." (ungexp output) 0)))
|
(process-directory "." (ungexp output) 0)))
|
||||||
(list (gexp-input modules))))
|
(append (map gexp-input extensions)
|
||||||
|
(list (gexp-input modules)))))
|
||||||
|
|
||||||
(gexp->derivation name build
|
(gexp->derivation name build
|
||||||
#:script-name "compile-modules"
|
#:script-name "compile-modules"
|
||||||
|
|
Reference in a new issue