diff options
author | Marius Bakke <[email protected]> | 2023-01-03 15:38:13 +0100 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2023-01-03 15:38:13 +0100 |
commit | 9123bb0fba3fce976dc41cd3b8919ee73b4cee4d (patch) | |
tree | 50ba63a4a3a6ffeb2f37fd0929813b51e00d01dc /gnu/packages/mes.scm | |
parent | ec0fbb471dfc6f72796da9ebafbb0630daa91267 (diff) | |
parent | 71ee1fbbed8ea9788dd48a634653d66606d372ce (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/mes.scm')
-rw-r--r-- | gnu/packages/mes.scm | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index 4487b1b6eb..9ec506a1ed 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -98,29 +98,20 @@ extensive examples, including parsers for the Javascript and C99 languages.") (define-public nyacc (package (inherit nyacc-0.99) - (version "1.07.4") + (version "1.08.1") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/nyacc/nyacc-" version ".tar.gz")) (sha256 (base32 - "1kr3b88sx0g9zy52algxqpvnkjm76qdyld7pasbbajkph2zhcj92")) + "1vrz3pnlr3njwk6ksz85slcwawi8ngiqbw94wd9x3mgv85vsfmys")) (modules '((guix build utils))) (snippet '(substitute* "configure" (("GUILE_GLOBAL_SITE=\\$prefix.*") "GUILE_GLOBAL_SITE=\ $prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n"))))) - (arguments - '(#:phases - (modify-phases %standard-phases - ;; See https://savannah.nongnu.org/bugs/index.php?60474 - (add-after 'unpack 'fix-60474 - (lambda _ - (substitute* "module/nyacc/lang/c99/parser.scm" - (("\\(memq \\(car stmt\\) '\\(include include-next\\)\\)") - "(memq (car stmt) '(include include-next define))"))))))) (inputs (list guile-3.0)) (propagated-inputs (list guile-bytestructures)) (description |