From aa277bf9d20668bcf8b2de4c6cfef9f09bc67df3 Mon Sep 17 00:00:00 2001 From: Arthur Rodrigues Date: Tue, 7 Apr 2026 00:46:12 +0000 Subject: 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 --- gnu/packages/golang-web.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu') 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") -- cgit v1.3