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

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

Change-Id: I5d629750abef81f1b4f5ec8bb0cdb0e2f219d3e2
This commit is contained in:
Sharlatan Hellseher 2024-09-14 23:23:14 +01:00
parent d80979ce69
commit 8861d9e1d0
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -5760,7 +5760,7 @@ (define-public go-github-com-bmatcuk-doublestar
matching and globbing with support for \"doublestar\" patterns.")
(license license:expat)))
;; For chezmoi-1.8.10
;; For chezmoi-1.8.11
(define-public go-github-com-bmatcuk-doublestar-v2
(package
(inherit go-github-com-bmatcuk-doublestar)
@ -5781,6 +5781,25 @@ (define-public go-github-com-bmatcuk-doublestar-v2
#:unpack-path "github.com/bmatcuk/doublestar/v2"
#:import-path "github.com/bmatcuk/doublestar/v2"))))
(define-public go-github-com-bmatcuk-doublestar-v3
(package
(inherit go-github-com-bmatcuk-doublestar)
(name "go-github-com-bmatcuk-doublestar-v3")
(version "3.0.0")
(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 "011h07mlmscbxxjr3h30fjjb4dw3gb245nzczaq520r112xlidhj"))))
(arguments
(list
#:tests? #f ; tests have more broken parts
#:import-path "github.com/bmatcuk/doublestar/v3"))))
(define-public go-github-com-bmatcuk-doublestar-v4
(package
(inherit go-github-com-bmatcuk-doublestar)