summaryrefslogtreecommitdiff
path: root/gnu/packages/databases.scm
diff options
context:
space:
mode:
authorArthur Rodrigues <arthurhdrodrigues@proton.me>2025-11-14 12:46:26 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-11 22:21:29 +0000
commit0fbc16128337898dee2b6ebcefb65fdded8b3118 (patch)
treefcf3aa60c87dbaabd6b7e6ea4495953899da1c7c /gnu/packages/databases.scm
parent12d4e7277b455a90c053bddd21c9a19c6c66e351 (diff)
gnu: Add go-github-com-garyburd-redigo.
* gnu/packages/databases.scm (go-github-com-garyburd-redigo): New variable. Change-Id: Ic6eb55e6c93321fb2811349ea5f46f988878149c Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/databases.scm')
-rw-r--r--gnu/packages/databases.scm41
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 8ce2e2a37e8..412826bf28f 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -543,6 +543,47 @@ table-level bloom filters, and updates to the MANIFEST format.")
(append go-github-com-cockroachdb-crlib
go-github-com-cockroachdb-swiss)))))
+;; XXX: This repository has been archived by the owner on Sep 21, 2022. It is
+;; now read-only. It's only used by go-github-com-golang-gddo, consider to
+;; remove it when it does no longer require it.
+(define-public go-github-com-garyburd-redigo
+ (package
+ (name "go-github-com-garyburd-redigo")
+ (version "1.6.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/DeprecatedGoModules/redigo")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0xq1r7149z358g1dra2dwgmdlk8ynk89bkdgf9y4xx9vyddlaw08"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:skip-build? #t
+ #:import-path "github.com/garyburd/redigo"
+ #:test-flags
+ #~(list "-skip" (string-join
+ ;; pubsub_test.go:28: Punsubscribe(p1) =
+ ;; {punsubscribe p2 3}, want {punsubscribe p1 3}
+ ;; pubsub_test.go:28: Punsubscribe() =
+ ;; {punsubscribe p1 2}, want {punsubscribe p2 2}
+ (list "TestPushed"
+ ;; error connection to database, dial tcp
+ ;; :6379: connect: connection refused
+ "TestConnMux"
+ "TestConnMuxClose")
+ "|"))))
+ (native-inputs (list redis))
+ (home-page "https://github.com/garyburd/redigo")
+ (synopsis "Deprecated Redis client for Golang")
+ (description
+ "This package provides a Redis client for Golang. It is deprecated,
+consider using go-github-com-gomodule-redigo instead.")
+ (license license:asl2.0)))
+
(define-public pebble
(package/inherit go-github-com-cockroachdb-pebble
(name "pebble")