diff options
author | David Thompson <davet@gnu.org> | 2025-06-02 14:06:52 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-06-17 15:17:19 +0200 |
commit | 5d2727e250c2db52f3df751fc6f58d76bd1488d9 (patch) | |
tree | 1c555f665e6145cf0de9f5d3526ad27b1ea1b33a | |
parent | 5fdd3ab367cfef94c6365d2d814cc248d3aa7d60 (diff) |
gnu: Add go-github-com-moby-patternmatcher.
* gnu/packages/golang-xyz.scm (go-github-com-moby-patternmatcher): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I5f7d8c50077b13f13597cd5065b41cfd97813d44
-rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index bf5602fc36..7a35dadec8 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -12505,6 +12505,30 @@ about OS mounts as seen by the current process is available from @code{/proc/self/mountinfo}.") (license license:asl2.0))) +(define-public go-github-com-moby-patternmatcher + (package + (name "go-github-com-moby-patternmatcher") + (version "0.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/patternmatcher") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1s77wpsc6szr9qdpnpg9q65ibgjgj4b2d12hwf6wrwb39grcnbcz")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/moby/patternmatcher")) + (home-page "https://github.com/moby/patternmatcher") + (synopsis "File name pattern matching") + (description + "This Go library provides facilities for pattern matching on file +names.") + (license license:asl2.0))) + (define-public go-github-com-moby-sys-sequential (package (name "go-github-com-moby-sys-sequential") |