mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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 @@ are cross-built for TARGET."
|
||||||
;; Disable substitution because it would trigger a
|
;; Disable substitution because it would trigger a
|
||||||
;; connection to the substitute server, which is likely
|
;; connection to the substitute server, which is likely
|
||||||
;; to have no substitute to offer.
|
;; to have no substitute to offer.
|
||||||
#:substitutable? #f)))
|
#:substitutable? #f
|
||||||
|
|
||||||
|
#:properties `((type . profile)
|
||||||
|
(profile
|
||||||
|
(count
|
||||||
|
. ,(length
|
||||||
|
(manifest-entries manifest))))))))
|
||||||
|
|
||||||
(define* (profile-search-paths profile
|
(define* (profile-search-paths profile
|
||||||
#:optional (manifest (profile-manifest profile))
|
#:optional (manifest (profile-manifest profile))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue