diff options
author | Troy Figiel <troy@troyfigiel.com> | 2024-02-10 22:28:27 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-05-14 12:39:35 +0100 |
commit | 6f8d0f7c51d6c863c8989b631d173c8851db5989 (patch) | |
tree | a5e6576c06b786c34bcbd5472a8032b1b0a42eec | |
parent | c1d7b9ca2d61191fab095c0f97e0ad2ec1b20f07 (diff) |
gnu: go-go-etcd-io-bbolt: Move to (gnu packages golang-xyz).
* gnu/packages/databases.scm (go-go-etcd-io-bbolt): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: I52e6ea227c417c1997210ecc22725387143df32f
-rw-r--r-- | gnu/packages/databases.scm | 28 | ||||
-rw-r--r-- | gnu/packages/golang-xyz.scm | 28 |
2 files changed, 28 insertions, 28 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 7759195ed5..e70fa07f1b 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3034,34 +3034,6 @@ on another machine, accessed via TCP/IP.") (home-page "https://pqxx.org/") (license license:bsd-3))) -(define-public go-go-etcd-io-bbolt - (package - (name "go-go-etcd-io-bbolt") - (version "1.3.6") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/etcd-io/bbolt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d")))) - (build-system go-build-system) - (arguments - `(#:import-path "go.etcd.io/bbolt" - ;; Extending the test timeout to 30 minutes still times out on aarch64. - #:tests? ,(not target-arm?))) - (propagated-inputs - (list go-golang-org-x-sys)) - (home-page "https://go.etcd.io/bbolt") - (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 python-peewee (package (name "python-peewee") diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index cd023da86c..afd47ce138 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3460,6 +3460,34 @@ string. The string can be a string retorned for @code{time.Duration} or a similar string with weeks or days too.") (license license:bsd-3))) +(define-public go-go-etcd-io-bbolt + (package + (name "go-go-etcd-io-bbolt") + (version "1.3.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/bbolt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d")))) + (build-system go-build-system) + (arguments + `(#:import-path "go.etcd.io/bbolt" + ;; Extending the test timeout to 30 minutes still times out on aarch64. + #:tests? ,(not target-arm?))) + (propagated-inputs + (list go-golang-org-x-sys)) + (home-page "https://go.etcd.io/bbolt") + (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-go-uber-org-atomic (package (name "go-go-uber-org-atomic") |