guix_mirror_bot pushed a commit to branch master
in repository guix.
commit c5f168f66da7676eecfbd4e1260a2f7a0086d38d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Feb 5 17:15:10 2026 +0000
gnu: Add go-github-com-go-redis-redis.
* gnu/packages/golang-xyz.scm (go-github-com-go-redis-redis): New variable.
Change-Id: Ia4a2c2e1b644c7267159cba586a9be0726da7eb5
---
gnu/packages/golang-xyz.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 11b68ca164..8ed63c5768 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -9067,6 +9067,37 @@ professionally translated
@end itemize")
(license license:expat)))
+(define-public go-github-com-go-redis-redis
+ (package
+ (name "go-github-com-go-redis-redis")
+ (version "6.15.9")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/redis/go-redis")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1y13zhv4isf28bq249pz9dp08rb8amyfp2gdbfah09zcmlhjsaki"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:test-flags
+ ;; Tests requir running Redis server.
+ #~(list "-skip" "Example|TestGinkgoSuite")
+ #:import-path "github.com/go-redis/redis"))
+ (native-inputs
+ (list go-github-com-onsi-ginkgo))
+ (home-page "https://github.com/redis/go-redis")
+ (synopsis "Redis client for Golang")
+ (description
+ "@code{go-redis} is the official Redis client library for the Go
+programming language. It offers a straightforward interface for interacting
+with Redis servers. @code{github.com/redis/go-redis} and
+@code{github.com/go-redis/redis} are distributed from the same source.")
+ (license license:bsd-2)))
+
(define-public go-github-com-go-spatial-proj
(package
(name "go-github-com-go-spatial-proj")