ngz pushed a commit to branch core-updates
in repository guix.

commit 5c522ea9224b5b36f2000b663e6a49f475fecd3a
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sat Aug 3 01:53:27 2024 +0200

    gnu: texlive-revtex4-1: Fix build.
    
    * gnu/packages/tex.scm (texlive-revtex4-1)[arguments]<#:phases>: Fix regexp
    matching TEXLIVE-REVTEX source name.
    
    Change-Id: Ideea61ed97d4ea544554faa02152fea6d0bd1947
---
 gnu/packages/tex.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 7a8327711a..c989e4b797 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -32815,7 +32815,7 @@ users having difficulty with the incompatibility of 
that latest version.")
               (let ((revtex-source
                      (any (match-lambda
                             ((_ . dir)
-                             (and (string-match 
"texlive-revtex-[0-9]+-checkout"
+                             (and (string-match "texlive-revtex-[^-]+-checkout"
                                                 dir)
                                   dir)))
                           (or native-inputs inputs))))

Reply via email to