From c5f168f66da7676eecfbd4e1260a2f7a0086d38d Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 5 Feb 2026 17:15:10 +0000 Subject: 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 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") -- cgit v1.3