gnu: Add go-github-com-ryszard-goskiplist.

* gnu/packages/golang-xyz.scm (go-github-com-ryszard-goskiplist): New
variable.

Change-Id: Iada47f623e957b3b928ac2eff1bdd317ca4e2c62
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Patrick Norton 2025-11-24 17:14:58 -05:00 committed by Sharlatan Hellseher
parent c2cdc97917
commit be956cba63
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -20051,6 +20051,39 @@ specification at http://partners.adobe.com/public/developer/en/tiff/TIFF6.pdf
"This package implements column-formatted output for Golang.")
(license license:expat)))
(define-public go-github-com-ryszard-goskiplist
(package
(name "go-github-com-ryszard-goskiplist")
(version "0.0.0-20150312221310-2dfbae5fcf46")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ryszard/goskiplist")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "1135gmvcwnmk36zryxq554fmikrmg5c6y5ml00arqpagn5xhnmnl"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:import-path "github.com/ryszard/goskiplist"))
(home-page "https://github.com/ryszard/goskiplist")
(synopsis "Skip list implementation in Golang")
(description
"This is a library implementing @url{https://en.wikipedia.org/wiki/Skip_list,
skip lists} as first described in @url{https://doi.org/10.1145/78973.78977,
Skip lists: a probabilistic alternative to balanced trees} for the Go
programming language.
Skip lists are a data structure that can be used in place of balanced
trees. Skip lists use probabilistic balancing rather than strictly enforced
balancing and as a result the algorithms for insertion and deletion in skip
lists are much simpler and significantly faster than equivalent algorithms for
balanced trees.")
(license license:asl2.0)))
(define-public go-github-com-sabhiram-go-gitignore
(package
(name "go-github-com-sabhiram-go-gitignore")