me
/
guix
Archived
1
0
Fork 0

profiles: 'profile-derivation' sets a 'type' property.

* guix/profiles.scm (profile-derivation): Pass #:properties to
'gexp->derivation'.
master
Ludovic Courtès 2020-03-26 12:25:37 +01:00
parent c7af9d0b5e
commit e7570ec2da
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 7 additions and 1 deletions

View File

@ -1590,7 +1590,13 @@ are cross-built for TARGET."
;; Disable substitution because it would trigger a
;; connection to the substitute server, which is likely
;; to have no substitute to offer.
#:substitutable? #f)))
#:substitutable? #f
#:properties `((type . profile)
(profile
(count
. ,(length
(manifest-entries manifest))))))))
(define* (profile-search-paths profile
#:optional (manifest (profile-manifest profile))