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

* guix/profiles.scm (profile-derivation): Pass #:properties to
'gexp->derivation'.
This commit is contained in:
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

View file

@ -1590,7 +1590,13 @@ (define search-paths
;; 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))