guix_mirror_bot pushed a commit to branch master
in repository guix.
commit cd3fe6b4079e3795fe19cf921a14088bb92b814e
Author: Arun Isaac <[email protected]>
AuthorDate: Sun Feb 8 21:04:58 2026 +0000
gnu: Add go-github-com-couchbase-moss.
* gnu/packages/golang-xyz.scm (go-github-com-couchbase-moss): New variable.
Change-Id: I83e9b13348c1fcaf25f6227a286b8bdf11b544cb
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index fcb2afc05a..2a81fe73dd 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6297,6 +6297,39 @@ runtime memory allocations.")
"This package provides memcache client and server functionality.")
(license license:expat)))
+(define-public go-github-com-couchbase-moss
+ (package
+ (name "go-github-com-couchbase-moss")
+ (version "0.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/couchbase/moss")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1wxy8d6116w5a3rwsjbkc9p8x1r2q011gxwx2ciqr2if4g59i601"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/couchbase/moss"
+ ;; Some tests time out. Disable them.
+ #:test-flags
+ #~(list "-skip" (string-join (list "TestStoreCollHistograms"
+ "TestStoreCrashRecovery")
+ "|"))))
+ (propagated-inputs
+ (list go-github-com-couchbase-ghistogram
+ go-github-com-blevesearch-mmap-go
+ go-github-com-mschoch-smat))
+ (home-page "https://github.com/couchbase/moss")
+ (synopsis "Go key-value storage library")
+ (description
+ "This package provides a simple, fast, persistable, ordered key-value
+collection implementation as a Go library.")
+ (license license:asl2.0)))
+
(define-public go-github-com-cowsql-go-cowsql
(package
(name "go-github-com-cowsql-go-cowsql")