gnu: Add go-github-com-bmatcuk-doublestar.

* gnu/packages/golang.scm (go-github-com-bmatcuk-doublestar): New variable.
This commit is contained in:
Oleg Pykhalov 2020-08-08 23:16:04 +03:00
parent 26db4c956d
commit bdb5a10880
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -4474,3 +4474,25 @@ (define-public go-github-com-masterminds-sprig
(description "Sprig is a library that provides more than 100 commonly used
template functions.")
(license license:expat)))
(define-public go-github-com-bmatcuk-doublestar
(package
(name "go-github-com-bmatcuk-doublestar")
(version "1.3.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/bmatcuk/doublestar")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0bk5bixl6rqa8znxghyp6zndbccx9kdyrymjahgyp6qsrp7rk144"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/bmatcuk/doublestar"))
(home-page "https://github.com/bmatcuk/doublestar/")
(synopsis "Path pattern matching and globbing supporting doublestar")
(description "@code{doublestar} is a Go implementation of path pattern
matching and globbing with support for \"doublestar\" patterns.")
(license license:expat)))