From 47cdef9344394f97253422854d112dfb0676110d Mon Sep 17 00:00:00 2001 From: Sergey Trofimov Date: Tue, 6 Jan 2026 08:54:29 +0100 Subject: [PATCH] import: elpa: Fix glob->regexp conversion. * guix/import/elpa.scm (melpa-recipe->maybe-arguments)[glob->regexp]: Treat '*' as zero or more characters. Merges guix/guix!5408 Change-Id: I1630d17c7693a30110551e91405e1580d1e8a477 Signed-off-by: Cayetano Santos --- 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 6c604d977a321407f621a45aca8b58a7890e8f28..e5b84bcc020d4bcd200282b64bca9070d4c225b2 100644 --- a/guix/import/elpa.scm +++ b/guix/import/elpa.scm @@ -300,7 +300,7 @@ unsupported MELPA fetcher: ~a, falling back to unstable MELPA source~%") (lambda (m) (if (string= (match:substring m 0) "**") ".*" - "[^/]+")) + "[^/]*")) 'post) "$"))