summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-23 19:56:15 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-07-23 21:15:02 +0100
commitd0140ef18fab44172f1418bbcce1a9c390cc6c67 (patch)
tree77cc6050dd237635f2604eebccf4b99f5e812c39 /gnu
parent2a4e2195ed5dad8584efa2dbefa1908ca0f082bb (diff)
gnu: Add go-github-com-bradfitz-iter.
* gnu/packages/golang-xyz.scm (go-github-com-bradfitz-iter): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index dcca92497ea..a5f871d694b 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -4642,6 +4642,29 @@ Most operations should be o(1) as well as all being thread safe.")
4642 "This is a memcache client library for the Go programming language.") 4642 "This is a memcache client library for the Go programming language.")
4643 (license license:asl2.0))) 4643 (license license:asl2.0)))
4644 4644
4645(define-public go-github-com-bradfitz-iter
4646 (package
4647 (name "go-github-com-bradfitz-iter")
4648 (version "0.0.0-20191230175014-e8f45d346db8")
4649 (source
4650 (origin
4651 (method git-fetch)
4652 (uri (git-reference
4653 (url "https://github.com/bradfitz/iter")
4654 (commit (go-version->git-ref version))))
4655 (file-name (git-file-name name version))
4656 (sha256
4657 (base32 "1qqy1fhmlrsfz6l1arsxmkpfj30s090j1a3ij0lap6h45pc1z509"))))
4658 (build-system go-build-system)
4659 (arguments
4660 (list
4661 #:import-path "github.com/bradfitz/iter"))
4662 (home-page "https://github.com/bradfitz/iter")
4663 (synopsis "Range over integers @code{[0,n)}" )
4664 (description
4665 "Package iter provides a syntactically different way to iterate over integers.")
4666 (license license:bsd-3)))
4667
4645(define-public go-github-com-bradfitz-parentdeath 4668(define-public go-github-com-bradfitz-parentdeath
4646 (package 4669 (package
4647 (name "go-github-com-bradfitz-parentdeath") 4670 (name "go-github-com-bradfitz-parentdeath")