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

commit 34e50e8d5e973aa3ea4d64f218ead5503d57d75a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Sep 3 21:24:05 2024 +0100

    gnu: Add go-github-com-deckarep-golang-set-v2.
    
    * gnu/packages/golang-xyz.scm (go-github-com-deckarep-golang-set-v2): New 
variable.
    
    Change-Id: I0e59fecfeba327c4f926c94b65f7bc8c42750fda
---
 gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 31db891235..66814c866b 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1980,6 +1980,29 @@ more complicated parallel cases.")
      "Set is the set collection for the Go language.")
     (license license:expat)))
 
+(define-public go-github-com-deckarep-golang-set-v2
+  (package
+    (inherit go-github-com-deckarep-golang-set)
+    (name "go-github-com-deckarep-golang-set-v2")
+    (version "2.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/deckarep/golang-set";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "11bvia6cflq46nzc2hfgikgxyck7wskyi0i7ksy9r0d41l4jh4l9"))))
+    (arguments
+     (list
+      #:import-path "github.com/deckarep/golang-set/v2"
+      #:unpack-path "github.com/deckarep/golang-set"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-github-com-elliotchance-orderedmap-v2))))
+
 (define-public go-github-com-dennwc-varint
   (package
     (name "go-github-com-dennwc-varint")

Reply via email to