guix-commits
[Top][All Lists]
Advanced

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

01/09: import/print: package->code: Fix license object.


From: guix-commits
Subject: 01/09: import/print: package->code: Fix license object.
Date: Mon, 19 Jul 2021 13:58:41 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 51157d474fef10288dfb6b2fb98c20932fa1e8a3
Author: itd <itd@net.in.tum.de>
AuthorDate: Sun Jul 18 22:01:00 2021 +0200

    import/print: package->code: Fix license object.
    
    * guix/import/print.scm (package->code)<license->code>: Update generated
    licence object to match record constructor.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 guix/import/print.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/guix/import/print.scm b/guix/import/print.scm
index dcc38ab..0310739 100644
--- a/guix/import/print.scm
+++ b/guix/import/print.scm
@@ -60,9 +60,9 @@ when evaluated."
       (if var
           (symbol-append 'license: var)
           `(license
-            (name ,(license-name lic))
-            (uri ,(license-uri lic))
-            (comment ,(license-comment lic))))))
+            ,(license-name lic)
+            ,(license-uri lic)
+            ,(license-comment lic)))))
 
   (define (search-path-specification->code spec)
     `(search-path-specification



reply via email to

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