mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-22 18:49:14 -05:00
services: Use 'packages->manifest' in 'packages->profile-entry'.
This allows using (PACKAGE OUTPUT) in the packages field. Reported by Jan Nieuwenhuizen <janneke@gnu.org>. * gnu/services.scm (packages->profile-entry): Use 'packages->manifest'.
This commit is contained in:
parent
956ad60cad
commit
60a0886d72
1 changed files with 2 additions and 2 deletions
|
@ -458,8 +458,8 @@ (define setuid-program-service-type
|
|||
(define (packages->profile-entry packages)
|
||||
"Return a system entry for the profile containing PACKAGES."
|
||||
(mlet %store-monad ((profile (profile-derivation
|
||||
(manifest (map package->manifest-entry
|
||||
(delete-duplicates packages eq?))))))
|
||||
(packages->manifest
|
||||
(delete-duplicates packages eq?)))))
|
||||
(return `(("profile" ,profile)))))
|
||||
|
||||
(define profile-service-type
|
||||
|
|
Loading…
Reference in a new issue