1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add go-github-com-zyedidia-glob.

* gnu/packages/golang-xyz.scm (go-github-com-zyedidia-glob): New variable.

Change-Id: I3c2815a1c1544641ca0bc06a97f0129a5a89a13d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Ashvith Shetty 2025-02-15 00:35:28 +05:30 committed by Sharlatan Hellseher
parent 93a59ab4e0
commit 21ff39ab10
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -15994,6 +15994,29 @@ Platforms supported:
@end itemize")
(license (list license:expat license:bsd-3))))
(define-public go-github-com-zyedidia-glob
(package
(name "go-github-com-zyedidia-glob")
(version "0.0.0-20170209203856-dd4023a66dc3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/zyedidia/glob")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "1vqw4xbqq6j8p5m7mwxvb448w69vjvgzx0ndsfzdh2cxfirwp3y7"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/zyedidia/glob"))
(home-page "https://github.com/zyedidia/glob")
(synopsis "String globbing in Go")
(description
"Package glob provides objects for matching strings with globs.")
(license license:expat)))
(define-public go-github-com-zyedidia-poller
(package
(name "go-github-com-zyedidia-poller")