~ruther/guix-local

47cdef9344394f97253422854d112dfb0676110d — Sergey Trofimov a month ago 1b8f322
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 <csantosb@inventati.org>
1 files changed, 1 insertions(+), 1 deletions(-)

M guix/import/elpa.scm
M guix/import/elpa.scm => guix/import/elpa.scm +1 -1
@@ 300,7 300,7 @@ unsupported MELPA fetcher: ~a, falling back to unstable MELPA source~%")
                               (lambda (m)
                                 (if (string= (match:substring m 0) "**")
                                     ".*"
                                     "[^/]+"))
                                     "[^/]*"))
                               'post)
     "$"))