From 3e1db82a70921267f13e5983b9106073687d5037 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 2 Jun 2025 14:10:06 +0200 Subject: [PATCH] gnu: Add go-github-com-timshannon-bolthold. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/golang-xyz.scm (go-github-com-timshannon-bolthold): New variable. Co-authored-by: Ludovic Courtès Change-Id: I2ca8f14f00154c195418c3365ce54affc013f7bf --- gnu/packages/golang-xyz.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 7a35dadec8d..d0fa911e2eb 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -16830,6 +16830,35 @@ serialize and de-serialize Go data structures to and from data interchange format - @url{https://en.wikipedia.org/wiki/MessagePack,MessagePack}.") (license license:expat))) +(define-public go-github-com-timshannon-bolthold + (package + (name "go-github-com-timshannon-bolthold") + (version "0.0.0-20240314194003-30aac6950928") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/timshannon/bolthold") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107r4nwhvpdp0n9b5fls1lw8z8qsiajiykkpjs7947nrbc07ij1j")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/timshannon/bolthold" + ;; Test suite fails. + #:tests? #f)) + (propagated-inputs (list go-go-etcd-io-bbolt)) + (home-page "https://github.com/timshannon/bolthold") + (synopsis "Indexing and querying on top of a Bold database") + (description + "Package bolthold is an indexing and querying layer on top of a Bolt +database. The goal is to allow easy, persistent storage and retrieval of Go +types. BoltDB is an embedded key-value store, and bolthold servers a similar +use case however with a higher level interface for common uses of BoltDB.") + (license license:expat))) + (define-public go-github-com-tklauser-go-sysconf (package (name "go-github-com-tklauser-go-sysconf")