[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#57326] [PATCH 2/7] gnu: Add go-github-com-boltdb-bolt.
From: |
Cairn |
Subject: |
[bug#57326] [PATCH 2/7] gnu: Add go-github-com-boltdb-bolt. |
Date: |
Sun, 21 Aug 2022 23:42:58 +0000 |
* gnu/packages/golang.scm (go-github-com-boltdb-bolt): New variable.
---
gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 130e3d12f9..0f52edbf52 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8101,6 +8101,31 @@ (define-public go-github-com-zclconf-go-cty
configuration languages, but other uses may be possible too.")
(license license:expat)))
+(define-public go-github-com-boltdb-bolt
+ (package
+ (name "go-github-com-boltdb-bolt")
+ (version "1.3.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/boltdb/bolt")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0z7j06lijfi4y30ggf2znak2zf2srv2m6c68ar712wd2ys44qb3r"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:tests? #f ;Undefined test flag causes fail
+ #:import-path "github.com/boltdb/bolt"))
+ (home-page "https://github.com/boltdb/bolt")
+ (synopsis "Embedded key/value database for Go")
+ (description "Bolt is a pure Go key/value store inspired by Howard Chu's
+LMDB project. The goal of the project is to provide a simple, fast, and
+reliable database for projects that don't require a full database server
+such as Postgres or MySQL.")
+ (license license:expat)))
+
(define-public go-etcd-io-bbolt
(package
(name "go-etcd-io-bbolt")
--
2.37.2
- [bug#57326] [PATCH 0/7] gnu: Add hydroxide., Cairn, 2022/08/21
- [bug#57326] [PATCH 1/7] gnu: go-github-com-emersion-go-imap: Update to 1.2.1., Cairn, 2022/08/21
- [bug#57326] [PATCH 2/7] gnu: Add go-github-com-boltdb-bolt.,
Cairn <=
- [bug#57326] [PATCH 4/7] gnu: Add go-github-com-emersion-go-mbox., Cairn, 2022/08/21
- [bug#57326] [PATCH 3/7] gnu: Add go-github-com-emersion-go-bcrypt., Cairn, 2022/08/21
- [bug#57326] [PATCH 6/7] gnu: Add go-github-com-emersion-go-webdav., Cairn, 2022/08/21
- [bug#57326] [PATCH 5/7] gnu: Add go-github-com-emersion-go-vcard., Cairn, 2022/08/21
- [bug#57326] [PATCH 7/7] gnu: Add hydroxide., Cairn, 2022/08/21