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

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1fc556b686 import: elpa: Fix repo url for melpa git recipes.
1fc556b686 is described below

commit 1fc556b686d4f3a8f16e73a732dc3b867139c8cb
Author: Sergey Trofimov <[email protected]>
AuthorDate: Thu Jan 15 07:36:38 2026 +0100

    import: elpa: Fix repo url for melpa git recipes.
    
    * guix/import/elpa.scm (melpa-recipe->origin): Take repo location from
    :url for `git' :fetcher.
    
    Merges guix/guix!5631
    
    Change-Id: I6a3a8cef52eda2e5c731b8ff7f38f17dc920e167
    Signed-off-by: Cayetano Santos <[email protected]>
---
 guix/import/elpa.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm
index e5b84bcc02..13c070c2e7 100644
--- a/guix/import/elpa.scm
+++ b/guix/import/elpa.scm
@@ -251,7 +251,7 @@ the package named PACKAGE-NAME."
               (string-append "https://github.com/"; (assq-ref recipe ':repo))))
     ('gitlab (recipe->origin
               (string-append "https://gitlab.com/"; (assq-ref recipe ':repo))))
-    ('git    (recipe->origin (assq-ref recipe ':repo)))
+    ('git    (recipe->origin (assq-ref recipe ':url)))
     ;; XXX: if we're not using melpa then this stops us printing a warning
     (#f      #f)
     (_       (warning (G_ "\

Reply via email to