civodul pushed a commit to branch master
in repository guix.
commit 416f7f4f144569fa66772e0cf43cf785d9a408af
Author: Ludovic Courtès <[email protected]>
AuthorDate: Wed Apr 22 15:35:36 2020 +0200
profiles: Add #:name parameter to 'profile-derivation'.
* guix/profiles.scm (profile-derivation): Add #:name and pass it to
'gexp->derivation'.
---
guix/profiles.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix/profiles.scm b/guix/profiles.scm
index 47a7c92..88606fa 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -1547,6 +1547,7 @@ MANIFEST."
(define* (profile-derivation manifest
#:key
+ (name "profile")
(hooks %default-profile-hooks)
(locales? #t)
(allow-collisions? #f)
@@ -1634,7 +1635,7 @@ are cross-built for TARGET."
#:manifest '#$(manifest->gexp manifest)
#:search-paths search-paths))))
- (gexp->derivation "profile" builder
+ (gexp->derivation name builder
#:system system
#:target target