~ruther/guix-local

3ae28685665a777d41a5016f4b5d01b9371a7e02 — Sharlatan Hellseher 4 months ago 50c9586
gnu: Add go-modernc-org-ebnfutil.

* gnu/packages/golang-xyz.scm (go-modernc-org-ebnfutil): New variable.

Change-Id: I1e363141d66cbb00a6d168286e17a8ab8ebd2f4d
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +27 -0
@@ 24387,6 24387,33 @@ grammars.  The input is text @code{[]byte} satisfying the following
grammar (represented itself in EBNF):.")
    (license license:bsd-3)))

(define-public go-modernc-org-ebnfutil
  (package
    (name "go-modernc-org-ebnfutil")
    (version "1.1.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://gitlab.com/cznic/ebnfutil")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "12hwaqy4c83q3yqj7qakysm7wr3l9cn9925pywssmflixm9cw19s"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "modernc.org/ebnfutil"))
    (propagated-inputs
     (list  go-modernc-org-ebnf
            go-modernc-org-strutil))
    (home-page "https://gitlab.com/cznic/ebnfutil")
    (synopsis "Utilities for messing with EBNF grammars")
    (description
     "This package provides some utilities for messing with @acronym{extended
Backus–Naur form, EBNF} grammars.")
    (license license:bsd-3)))

(define-public go-modernc-org-fileutil
  (package
    (name "go-modernc-org-fileutil")