summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-05 17:15:10 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-05 17:15:10 +0000
commitc5f168f66da7676eecfbd4e1260a2f7a0086d38d (patch)
tree896f730ae0bb8d07206c15fbeebcea84fffe0011
parent2c710762f5c80b1a151b57c6f369dfa1812d1f97 (diff)
gnu: Add go-github-com-go-redis-redis.
* gnu/packages/golang-xyz.scm (go-github-com-go-redis-redis): New variable. Change-Id: Ia4a2c2e1b644c7267159cba586a9be0726da7eb5
-rw-r--r--gnu/packages/golang-xyz.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 11b68ca1649..8ed63c5768c 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")