1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add go-github-com-petar-gollrb.

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

Change-Id: I41838a3f35e9259f394b5bf1b12054d6d4386e1f
This commit is contained in:
Sharlatan Hellseher 2025-02-19 21:05:17 +00:00
parent d78c2eef1a
commit f409f566e6
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -13113,6 +13113,37 @@ package (which is based off an earlier version of this package).")
(list go-github-com-stretchr-testify))
(propagated-inputs '())))
(define-public go-github-com-petar-gollrb
(package
(name "go-github-com-petar-gollrb")
(version "0.0.0-20210522233825-ae3b015fd3e9")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/petar/GoLLRB")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0k50v8jk7pfwpghmpyr9gk8kpcxns0d8kw113z9wjcr0x8gnyj0n"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:import-path "github.com/petar/GoLLRB"
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'remove-examples
(lambda* (#:key tests? import-path #:allow-other-keys)
(with-directory-excursion (string-append "src/" import-path)
(delete-file-recursively "example")))))))
(home-page "https://github.com/petar/GoLLRB")
(synopsis "LLRB implementation of balanced binary search trees for Golang")
(description
"@code{GoLLRB} is a Left-Leaning Red-Black (LLRB) implementation of 2-3
balanced binary search trees in Go Language.")
(license license:bsd-3)))
(define-public go-github-com-peterbourgon-diskv
(package
(name "go-github-com-peterbourgon-diskv")