3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add go-github-com-tekwizely-go-parsing.

* gnu/packages/golang.scm (go-github-com-tekwizely-go-parsing): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Stefan Reichör 2021-02-12 22:51:53 +01:00 committed by Nicolas Goaziou
parent 70d16d2835
commit 8acedeb3a9
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -6644,6 +6644,31 @@ modifying them.")
@end itemize")
(license license:expat)))
(define-public go-github-com-tekwizely-go-parsing
(let ((commit "1548cfb17df54d365ce9febed0677c06a40a8ceb")
(revision "0"))
(package
(name "go-github-com-tekwizely-go-parsing")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tekwizely/go-parsing")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0bv5amka8hb9crc7qvlzi2kbycqrnh9d46b9wgcs8wqzl0z7w609"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/tekwizely/go-parsing"))
(home-page "https://github.com/tekwizely/go-parsing")
(synopsis "Text parsing, with lexers, parsers, and related tools")
(description
"This package provides Go modules focused on text parsing, with lexers,
parsers, and related tools.")
(license license:expat))))
(define-public go-github.com-ulikunitz-xz
(package
(name "go-github.com-ulikunitz-xz")