~ruther/guix-local

3e8972c427ef098f85241e51e4a8a51a0aeffefa — Maxim Cournoyer 11 months ago 1482e0d
gnu: go-github-com-goccmack-gocc: Update to 1.0.2.

* gnu/packages/golang-build.scm (go-github-com-goccmack-gocc): Update to 1.0.2.
[source]: Adjust commit reference.
[description]: Use two spaces between sentences.

Change-Id: I812ecd49037a19a22cfe1654b97134a01c2ae36b
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 5 insertions(+), 5 deletions(-)

M gnu/packages/golang-build.scm
M gnu/packages/golang-build.scm => gnu/packages/golang-build.scm +5 -5
@@ 62,16 62,16 @@
(define-public go-github-com-goccmack-gocc
  (package
    (name "go-github-com-goccmack-gocc")
    (version "0.0.0-20230228185258-2292f9e40198")
    (version "1.0.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/goccmack/gocc")
             (commit (go-version->git-ref version))))
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0ah1z1bmn9y9sbh2z1jxsjgsrv1rfrzzzi4c4nq646z2n25c2x8s"))))
        (base32 "0rv0v0k13lql0z9s9bffkjsan32a0i0m8405w3xng1y0jk3706mh"))))
    (build-system go-build-system)
    (arguments
     (list


@@ 85,8 85,8 @@
    (description
     "Gocc is a compiler kit for Go written in Go.  Gocc generates lexers and
parsers or stand-alone DFAs or parsers from a BNF.  Lexers are DFAs, which
recognise regular languages. Gocc lexers accept UTF-8 input. Gocc parsers are
PDAs, which recognise LR-1 languages. Optional LR1 conflict handling
recognise regular languages. Gocc lexers accept UTF-8 input.  Gocc parsers are
PDAs, which recognise LR-1 languages.  Optional LR1 conflict handling
automatically resolves shift / reduce and reduce / reduce conflicts.")
    (license license:asl2.0)))