guix-commits
[Top][All Lists]
Advanced

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

branch master updated: import: crate: make-crate-sexp: Fix missing home-


From: guix-commits
Subject: branch master updated: import: crate: make-crate-sexp: Fix missing home-page handling.
Date: Mon, 19 Oct 2020 13:58:07 -0400

This is an automated email from the git hooks/post-receive script.

cbaines pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c949530  import: crate: make-crate-sexp: Fix missing home-page 
handling.
c949530 is described below

commit c949530b6f6fea38bbc783a3fa4afd591316812d
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Mon Oct 19 18:48:33 2020 +0100

    import: crate: make-crate-sexp: Fix missing home-page handling.
    
    * guix/import/crate.scm (make-crate-sexp): Replace 'null rather than '() 
with
    the empty string for the home-page.
---
 guix/import/crate.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/import/crate.scm b/guix/import/crate.scm
index f87c891..8c2b76c 100644
--- a/guix/import/crate.scm
+++ b/guix/import/crate.scm
@@ -167,7 +167,7 @@ and LICENSE."
                                               (maybe-cargo-development-inputs
                                                 cargo-development-inputs)))
                    (home-page ,(match home-page
-                                 (() "")
+                                 ('null "")
                                  (_ home-page)))
                    (synopsis ,synopsis)
                    (description ,(beautify-description description))



reply via email to

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