mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add go-github-com-gobwas-glob.
* gnu/packages/syncthing.scm (go-github-com-gobwas-glob): New variable.
This commit is contained in:
parent
a3a5b01240
commit
4d93ebb313
1 changed files with 23 additions and 0 deletions
|
@ -164,3 +164,26 @@ (define-public go-github-com-edsrzf-mmap-go
|
|||
(description "This packages provides a Go implementation of mmap.")
|
||||
(home-page "https://github.com/edsrzf/mmap-go")
|
||||
(license bsd-3))))
|
||||
|
||||
(define-public go-github-com-gobwas-glob
|
||||
(let ((commit "51eb1ee00b6d931c66d229ceeb7c31b985563420")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "go-github-com-gobwas-glob")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/gobwas/glob")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"090wzpwsjana1qas8ipwh1pj959gvc4b7vwybzi01f3bmd79jwlp"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/gobwas/glob"))
|
||||
(synopsis "Go globbing library")
|
||||
(description "This packages provides a Go implementation of globs.")
|
||||
(home-page "https://github.com/gobwas/glob")
|
||||
(license expat))))
|
||||
|
|
Loading…
Reference in a new issue