diff options
| author | Arthur Rodrigues <arthurhdrodrigues@proton.me> | 2026-04-07 00:46:12 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-09 16:49:58 +0100 |
| commit | aa277bf9d20668bcf8b2de4c6cfef9f09bc67df3 (patch) | |
| tree | 6592ae8b2fe1eddd0acb62d48e787108ddfac6fa /gnu | |
| parent | 1299dfc40de26065c094acbef0d2c2c4257bd0f4 (diff) | |
gnu: Add go-go-etcd-io-raft-v3.
* gnu/packages/golang-web.scm (go-go-etcd-io-raft-v3): New variable.
Change-Id: I27780e9953decd625bf968695761af63a1a562cf
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-web.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 329d99c504..176faf965a 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -17828,6 +17828,37 @@ browsing activities based on HTTP Upgrade (HTTPT).") interacting with the etcd v3 API.") (license license:asl2.0))) +(define-public go-go-etcd-io-raft-v3 + (package + (name "go-go-etcd-io-raft-v3") + (version "3.6.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etcd-io/raft") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18d9l8739irzgl0860qrrmdn3aqhc92lhc9brv8lkq7n59gxqd6i")))) + (build-system go-build-system) + (arguments + (list + #:import-path "go.etcd.io/raft")) + (native-inputs + (list go-github-com-stretchr-testify)) + (propagated-inputs + (list go-github-com-cockroachdb-datadriven + go-github-com-gogo-protobuf + go-github-com-golang-protobuf)) + (home-page "https://raft.github.io") + (synopsis "Raft library for Golang") + (description + "This package provides a Golang implementation of the Raft Protocol. +Raft is a protocol with which a cluster of nodes can maintain a replicated +state machine. See @url{https://raft.github.io/raft.pdf} for more info.") + (license license:asl2.0))) + (define-public go-go-mau-fi-whatsmeow (package (name "go-go-mau-fi-whatsmeow") |
