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

commit 71bd9425c0c195b83745dd06c40b1de4579d7fc0
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jun 23 19:56:15 2026 +0100

    gnu: Add go-github-com-bradfitz-iter.
    
    * gnu/packages/golang-xyz.scm (go-github-com-bradfitz-iter): New variable.
---
 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 f97eb54a1d..b4b9304c45 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -4286,6 +4286,29 @@ Most operations should be o(1) as well as all being 
thread safe.")
      "This is a memcache client library for the Go programming language.")
     (license license:asl2.0)))
 
+(define-public go-github-com-bradfitz-iter
+  (package
+    (name "go-github-com-bradfitz-iter")
+    (version "0.0.0-20191230175014-e8f45d346db8")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/bradfitz/iter";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1qqy1fhmlrsfz6l1arsxmkpfj30s090j1a3ij0lap6h45pc1z509"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/bradfitz/iter"))
+    (home-page "https://github.com/bradfitz/iter";)
+    (synopsis "Range over integers @code{[0,n)}" )
+    (description
+     "Package iter provides a syntactically different way to iterate over 
integers.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-bradfitz-parentdeath
   (package
     (name "go-github-com-bradfitz-parentdeath")

Reply via email to