From 0281417e0663badbce390000a6fdbcfde10f9ede Mon Sep 17 00:00:00 2001 From: IliaLuetin Date: Mon, 27 Oct 2025 14:37:17 +0100 Subject: [PATCH] gnu: Add go-github-com-seancfoley-bintree. * gnu/packages/golang-xyz.scm (go-github-com-seancfoley-bintree): New variable. Change-Id: Iad985bc8a686d54fd79cca25b50a4a569296b5dc Signed-off-by: Sharlatan Hellseher --- 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 adef39d2c4d24195c60869ebeddae98b86de3178..dd755baded5760f80ef8d4569fb62d9b1b5c171c 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -19202,6 +19202,29 @@ detect the number of bytes written to a stream, so you can use it as a is undetermined, a customizable spinner is shown.") (license license:expat))) +(define-public go-github-com-seancfoley-bintree + (package + (name "go-github-com-seancfoley-bintree") + (version "1.3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/seancfoley/bintree") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ldfqlni6radygrnh1dzhrwjxdzsg96335awwhxhvrd8syb33s89")))) + (build-system go-build-system) + (arguments + (list #:skip-build? #t + #:import-path "github.com/seancfoley/bintree")) + (home-page "https://github.com/seancfoley/bintree") + (synopsis "Binary trees and tries for Golang") + (description + "This package provides binary tree and trie data structures for Golang.") + (license license:asl2.0))) + (define-public go-github-com-sebdah-goldie-v2 (package (name "go-github-com-sebdah-goldie-v2")