diff options
| author | Roman Scherer <roman@burningswell.com> | 2025-12-25 19:32:19 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-08 23:27:36 +0100 |
| commit | beea3265d041b799aa6bdee91e316c5312283b95 (patch) | |
| tree | 61d5e1613a161490b05516dfc1da9a4d96451be7 /gnu | |
| parent | 7a37e948dbc990ec4892d10a6517a9adf661dd98 (diff) | |
gnu: Add go-github-com-shibumi-go-pathspec.
* gnu/packages/golang-xyz.scm (go-github-com-shibumi-go-pathspec): New variable.
Relates-to: https://codeberg.org/guix/guix/issues/5190
Change-Id: I8b4dbc1d2a3616bf3e5975f1f1d170efcf6401cd
Reviewed-by: Johannes Christ <jc@jchri.st>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index be61532ee4..c855e7be60 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -23688,6 +23688,31 @@ synchronizing plain text: "Go-Daemon is a library for writing system daemons in Go.") (license license:expat))) +(define-public go-github-com-shibumi-go-pathspec + (package + (name "go-github-com-shibumi-go-pathspec") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shibumi/go-pathspec") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1wsnn0di87qdp171j8x27qzf9f59hdqc50jna9mj5iryzavxywk4")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/shibumi/go-pathspec")) + (home-page "https://github.com/shibumi/go-pathspec") + (synopsis "Gitignore-style path pattern matching for Go") + (description + "This package provides gitignore-style path pattern matching in Go. + It implements the same matching rules used by @file{.gitignore} files to +determine whether a file path matches a given pattern.") + (license license:asl2.0))) + (define-public go-github-com-shirou-gopsutil (package (name "go-github-com-shirou-gopsutil") |
