1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 20:10:39 +02:00

gnu: Add go-github-com-bmatcuk-doublestar-v4.

* gnu/packages/golang.scm (go-github-com-bmatcuk-doublestar-v4): New variable.

Change-Id: I81c9b04f1932b29e2bda7bf06df1ff3bef5caaa3
This commit is contained in:
Sharlatan Hellseher 2024-04-29 20:51:51 +01:00
parent f01a2dd80a
commit 51ea1d2fa8
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")