diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2025-08-18 09:29:02 +0200 |
|---|---|---|
| committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2025-08-19 09:22:38 +0200 |
| commit | fa1da1f84dbf6dc703f0fc8eee50a65ac77742bc (patch) | |
| tree | c16818970d7c1fc8166c56c2a62c6fc5e07312ab | |
| parent | 2ccd98cba0725307f02be5b6d8a949199b528887 (diff) | |
gnu: nyacc: Update to 2.02.2.
We don't want to touch the packages leading up to nyacc-1.00.2 which is used
in commencement.
* gnu/packages/mes.scm (nyacc): Rename to...
(nyacc-1.08.1): ...this.
(nyacc-1.00.2): Update accordingly.
(nyacc): New variable.
Change-Id: I0d8ac098ae6871e6ebcff2090537e26e759c4d9b
| -rw-r--r-- | gnu/packages/mes.scm | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index d2107101825..a986148b6ef 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -92,7 +92,7 @@ extensive examples, including parsers for the Javascript and C99 languages.") (native-inputs (list pkg-config)) (inputs (list guile-2.2)))) -(define-public nyacc +(define-public nyacc-1.08.1 (package (inherit nyacc-0.99) (version "1.08.1") @@ -121,7 +121,7 @@ parsers to allow execution with Guile as extension languages."))) (define-public nyacc-1.00.2 (package - (inherit nyacc) + (inherit nyacc-1.08.1) (version "1.00.2") (source (origin (method url-fetch) @@ -170,6 +170,24 @@ parsers to allow execution with Guile as extension languages."))) "GUILE_GLOBAL_SITE=\ $prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n"))))))) +(define-public nyacc + (package + (inherit nyacc-1.00.2) + (version "2.02.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://savannah/nyacc/nyacc-" + version ".tar.gz")) + (sha256 + (base32 + "01829c24v531036rj8grcwx4hmiy3f0jznc9zbfa4wrslmq566k9")) + (modules '((guix build utils))) + (snippet + '(substitute* "configure" + (("GUILE_GLOBAL_SITE=\\$prefix.*") + "GUILE_GLOBAL_SITE=\ +$prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n"))))))) + (define-public mes (package (name "mes") |
