guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 73f727158fd1e6fcbbf6c1bdc66f6440e04c41c7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jun 10 13:42:56 2025 +0100
gnu: Add go-github-com-monochromegane-go-gitignore.
* gnu/packages/golang-xyz.scm (go-github-com-monochromegane-go-gitignore):
New variable.
Change-Id: Ifd1bd9c09f219ca7856cd71229d57c715dad4791
---
gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index ecc131b656..4a49f27ebe 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -13902,6 +13902,29 @@ standard @code{copy} will copy the pointers where
@code{deepcopy} copies the
values pointed to. Unexported field values are not copied.")
(license license:expat)))
+(define-public go-github-com-monochromegane-go-gitignore
+ (package
+ (name "go-github-com-monochromegane-go-gitignore")
+ (version "0.0.0-20200626010858-205db1a8cc00")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/monochromegane/go-gitignore")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1rawqsxi6n0nwl34nc4jda7drnwfli9v4zkhf60qhl6lcipj0lwg"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/monochromegane/go-gitignore"))
+ (home-page "https://github.com/monochromegane/go-gitignore")
+ (synopsis "Gitignore matching library for Golang")
+ (description
+ "This package provides a fast gitignore matching library for Go.")
+ (license license:expat)))
+
(define-public go-github-com-motemen-go-colorine
(package
(name "go-github-com-motemen-go-colorine")