diff options
| -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") |
