mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add go-github-com-tdewolff-parse-v2.
* gnu/packages/golang.scm (go-github-com-tdewolff-parse-v2): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b7708699d9
commit
ac481a0050
1 changed files with 24 additions and 0 deletions
|
@ -3384,6 +3384,30 @@ (define-public go-github-com-saracen-walker
|
|||
(description "The @code{walker} function is a faster, parallel version, of
|
||||
@code{filepath.Walk}")))
|
||||
|
||||
(define-public go-github-com-tdewolff-parse-v2
|
||||
(package
|
||||
(name "go-github-com-tdewolff-parse-v2")
|
||||
(version "2.6.6")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/tdewolff/parse")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1dqki9ima079k9a3l72igmx5dml8qsl9z8rzw8a433f4gjhlv320"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list #:import-path "github.com/tdewolff/parse/v2"))
|
||||
(native-inputs
|
||||
(list go-github-com-tdewolff-test))
|
||||
(home-page "https://github.com/tdewolff/parse")
|
||||
(synopsis "Go parsers for web formats")
|
||||
(description
|
||||
"This package contains several lexers and parsers written in Go.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-tdewolff-test
|
||||
(package
|
||||
(name "go-github-com-tdewolff-test")
|
||||
|
|
Loading…
Reference in a new issue