profiles: 'profile-derivation' sets a 'type' property.
* guix/profiles.scm (profile-derivation): Pass #:properties to 'gexp->derivation'.
This commit is contained in:
parent
c7af9d0b5e
commit
e7570ec2da
1 changed files with 7 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue