sharlatan pushed a commit to branch go-team in repository guix. commit 9648748ce76faeb030a7528e9fb884ee02faf980 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Thu Feb 27 23:23:48 2025 +0000
gnu: Add go-github-com-crackcomm-go-gitignore. * gnu/packages/golang-xyz.scm (go-github-com-crackcomm-go-gitignore): New variable. Change-Id: Ie2f226249d9eec55d852b02d6f5aeda692df29ac --- gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 359c884b19..90b891764f 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3777,6 +3777,33 @@ submodules: "This package provides memcache client and server functionality.") (license license:expat))) +(define-public go-github-com-crackcomm-go-gitignore + (package + (name "go-github-com-crackcomm-go-gitignore") + (version "0.0.0-20241020182519-7843d2ba8fdf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/crackcomm/go-gitignore") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vabnacz1bk2lvln3bjg4i6wj1lsb6pxy55xzkjp8wdhd8gmk47b")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/crackcomm/go-gitignore")) + (native-inputs + (list go-github-com-stretchr-testify)) + (home-page "https://github.com/crackcomm/go-gitignore") + (synopsis "Gitignore parser for Golang") + (description + "ignore is a library which returns a new ignorer object which can test +against various paths. This is particularly useful when trying to filter +files based on a .gitignore document.") + (license license:expat))) + (define-public go-github-com-delthas-go-libnp (let ((commit "96674b98150ed492b535d61dde5767dfa2dd14ce") (revision "1"))