guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/08: profiles: Add #:name parameter to 'profile-derivation'.


From: guix-commits
Subject: 03/08: profiles: Add #:name parameter to 'profile-derivation'.
Date: Wed, 22 Apr 2020 13:24:18 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 416f7f4f144569fa66772e0cf43cf785d9a408af
Author: Ludovic Courtès <address@hidden>
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
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]