sharlatan pushed a commit to branch go-team
in repository guix.

commit 32986ff303bb67cddcfcfadef06a13521bee5a5f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Sep 14 23:23:14 2024 +0100

    gnu: Add go-github-com-bmatcuk-doublestar-v3.
    
    * gnu/packages/golang.scm (go-github-com-bmatcuk-doublestar-v3): New 
variable.
    
    Change-Id: I5d629750abef81f1b4f5ec8bb0cdb0e2f219d3e2
---
 gnu/packages/golang.scm | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 9a9d1504d7..9c941abe8f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5733,7 +5733,7 @@ maps (because they are not addressable using Go 
reflection).")
 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)
@@ -5754,6 +5754,25 @@ 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-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)

Reply via email to