diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-29 20:51:51 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-28 15:15:44 +0100 |
commit | 51ea1d2fa829cdabf8881031b5aad3de46b608fc (patch) | |
tree | 29fd9c4b3a1c9bd6b4997dd1b99a2c691664678e | |
parent | f01a2dd80ac6a21177474a41d742e5a000225a4f (diff) | |
download | guix-51ea1d2fa829cdabf8881031b5aad3de46b608fc.tar.gz guix-51ea1d2fa829cdabf8881031b5aad3de46b608fc.zip |
gnu: Add go-github-com-bmatcuk-doublestar-v4.
* gnu/packages/golang.scm (go-github-com-bmatcuk-doublestar-v4): New variable.
Change-Id: I81c9b04f1932b29e2bda7bf06df1ff3bef5caaa3
-rw-r--r-- | gnu/packages/tex.scm | 87 |
1 files changed, 59 insertions, 28 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm 1b5aad3de46b608fc'>gnu/packages/golang.scmindex 1a7f5b3edd..5b88bdce1b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6802,6 +6802,24 @@ matching and globbing with support for \"doublestar\" patterns.") #:unpack-path "github.com/bmatcuk/doublestar/v2" #:import-path "github.com/bmatcuk/doublestar/v2")))) +(define-public go-github-com-bmatcuk-doublestar-v4 + (package + (inherit go-github-com-bmatcuk-doublestar) + (name "go-github-com-bmatcuk-doublestar-v4") + (version "4.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bmatcuk/doublestar") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12rf4a9isgg2nh927gikgbmyaynaqp4kjahgscb4qnr04m3vpr41")))) + (arguments + (list + #:import-path "github.com/bmatcuk/doublestar/v4")))) + (define-public go-github-com-dlclark-regexp2 (package (name "go-github-com-dlclark-regexp2") |