diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-01 17:10:49 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-01 17:10:49 -0400 |
commit | 2e65e4834a226c570866f2e8976ed7f252b45cd1 (patch) | |
tree | 21d625bce8d03627680214df4a6622bf8eb79dc9 /gnu/packages/mes.scm | |
parent | 9c68ecb24dd1660ce736cdcdea0422a73ec318a2 (diff) | |
parent | f1a3c11407b52004e523ec5de20d326c5661681f (diff) |
Merge remote-tracking branch 'origin/master' into staging
With resolved conflicts in:
gnu/packages/bittorrent.scm
gnu/packages/databases.scm
gnu/packages/geo.scm
gnu/packages/gnupg.scm
gnu/packages/gstreamer.scm
gnu/packages/gtk.scm
gnu/packages/linux.scm
gnu/packages/python-xyz.scm
gnu/packages/xorg.scm
guix/build/qt-utils.scm
Diffstat (limited to 'gnu/packages/mes.scm')
-rw-r--r-- | gnu/packages/mes.scm | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index 750ec2e67a..c66751bc7c 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2017, 2018, 2019, 2020, 2021 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2020, 2021 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz> ;;; ;;; This file is part of GNU Guix. @@ -99,14 +100,14 @@ extensive examples, including parsers for the Javascript and C99 languages.") (define-public nyacc (package (inherit nyacc-0.99) - (version "1.03.6") + (version "1.04.0") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/nyacc/nyacc-" version ".tar.gz")) (sha256 (base32 - "1s7kli288l4pizjaarx8m6jg7g0mgfy8rpbs9lpzg8la7wr5rvp4")) + "0m3mcdaslvvr2iav8ga146hzsja2hdj4656pszljb4q2q7h25ip5")) (modules '((guix build utils))) (snippet '(begin @@ -116,7 +117,14 @@ extensive examples, including parsers for the Javascript and C99 languages.") $prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n")) #t)))) (inputs - `(("guile" ,guile-3.0))))) + `(("guile" ,guile-3.0))) + (description + "@acronym{NYACC, Not Yet Another Compiler Compiler} is set of Guile modules +for generating parsers and lexical analyzers. It provides sample parsers, +pretty-printers using SXML trees as an intermediate representation, a decent C +parser and an `FFI Helper' tool to help create Guile Scheme bindings for C-based +libraries. It also provides (partially implemented) compilers based on these +parsers to allow execution with Guile as extension languages."))) (define-public nyacc-1.00.2 (package |