From: Thomas Albers via Guix-patches via <guix-patches@gnu.org>
To: 58432@debbugs.gnu.org
Cc: Thomas Albers <thomas@thomaslabs.org>
Subject: [bug#58432] [PATCH] gnu: Add hiredis
Date: Tue, 11 Oct 2022 11:19:49 +0200 [thread overview]
Message-ID: <20221011091949.9962-1-thomas@thomaslabs.org> (raw)
* gnu/packages/databases.scm (hiredis): New variable.
---
gnu/packages/databases.scm | 26 +++++++++++++++++++++++++-
1 file changed, 25 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index cf07832df7..b372423a77 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -58,6 +58,7 @@
;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
;;; Copyright © 2022 muradm <mail@muradm.net>
+;;; Copyright © 2022 Thomas Albers Raviola <thomas@thomaslabs.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2515,6 +2516,29 @@ (define-public ruby-redis
(home-page "https://github.com/redis/redis-rb")
(license license:expat)))
+(define-public hiredis
+ (package
+ (name "hiredis")
+ (version "1.0.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/redis/hiredis")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0a55zk3qrw9yl27i87h3brg2hskmmzbfda77dhq9a4if7y70xnfb"))))
+ (build-system cmake-build-system)
+ (native-inputs
+ ;; needed for testing
+ (list redis))
+ (synopsis "Minimalistic C client library for the Redis database")
+ (description "Library for sending commands and receiving replies to and
+from a Redis server. It comes with a synchronous API, asynchronous API and
+reply parsing API. Only the binary-safe Redis protocol is supported.")
+ (home-page "https://github.com/redis/hiredis")
+ (license license:bsd-3)))
+
(define-public go-github-com-cupcake-rdb
(package
(name "go-github-com-cupcake-rdb")
--
2.37.3
next reply other threads:[~2022-10-11 9:42 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-11 9:19 Thomas Albers via Guix-patches via [this message]
2022-10-11 9:50 ` [bug#58432] [PATCH] gnu: Add hiredis ( via Guix-patches via
2022-10-11 13:10 ` Thomas Albers Raviola via Guix-patches via
2022-10-11 13:08 ` Thomas Albers via Guix-patches via
2022-10-11 13:34 ` ( via Guix-patches via
2022-10-13 10:10 ` bug#58432: " Christopher Baines
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221011091949.9962-1-thomas@thomaslabs.org \
--to=guix-patches@gnu.org \
--cc=58432@debbugs.gnu.org \
--cc=thomas@thomaslabs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).