guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3ae28685665a777d41a5016f4b5d01b9371a7e02
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Oct 29 08:13:01 2025 +0000

    gnu: Add go-modernc-org-ebnfutil.
    
    * gnu/packages/golang-xyz.scm (go-modernc-org-ebnfutil): New variable.
    
    Change-Id: I1e363141d66cbb00a6d168286e17a8ab8ebd2f4d
---
 gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index b64ca0ee30..4c6ddb675b 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -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")

Reply via email to