mirror of
https://codeberg.org/guix/guix.git
synced 2026-05-13 15:03:44 +00:00
profiles: Use 'derivation?' to filter hooks.
Fixes a regression introduced in 07eaecfa.
* guix/profiles.scm (profile-derivation): Use 'derivation?' instead of
'gexp?' to filter hooks.
This commit is contained in:
@@ -685,9 +685,9 @@ the monadic procedures listed in HOOKS--such as an Info 'dir' file, etc."
|
||||
(hook manifest))
|
||||
hooks)))))
|
||||
(define inputs
|
||||
(append (filter-map (lambda (gexp)
|
||||
(and (gexp? gexp)
|
||||
(gexp-input gexp)))
|
||||
(append (filter-map (lambda (drv)
|
||||
(and (derivation? drv)
|
||||
(gexp-input drv)))
|
||||
extras)
|
||||
(manifest-inputs manifest)))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user