all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Christopher Baines <mail@cbaines.net>
To: 27853@debbugs.gnu.org
Subject: [bug#27853] [PATCH 1/2] gnu: Add memcached.
Date: Sat, 29 Jul 2017 17:36:22 +0100	[thread overview]
Message-ID: <20170729163623.13531-1-mail@cbaines.net> (raw)
In-Reply-To: <20170727174531.43424168@cbaines.net>

* gnu/packages/databases.scm (memcached): New variable.
---
 gnu/packages/databases.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 8f5857ad7..13efc5edc 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -53,6 +53,7 @@
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages jemalloc)
   #:use-module (gnu packages language)
+  #:use-module (gnu packages libevent)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages man)
   #:use-module (gnu packages ncurses)
@@ -290,6 +291,28 @@ SQL, Key/Value, XML/XQuery or Java Object storage for their data model.")
 mapping from string keys to string values.")
     (license license:bsd-3)))
 
+(define-public memcached
+  (package
+    (name "memcached")
+    (version "1.5.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://memcached.org/files/memcached-" version ".tar.gz"))
+       (sha256
+        (base32 "0chwc0g7wfvcad36z8pf2jbgygdnm9nm1l6pwjsn3d2b089gh0f0"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("libevent" ,libevent)
+       ("cyrus-sasl" ,cyrus-sasl)))
+    (home-page "https://memcached.org/")
+    (synopsis "In memory caching service")
+    (description "Memcached is a in memory key value store.  It has a small
+and generic API, and was originally intended for use with dynamic web
+applications.")
+    (license license:bsd-3)))
+
 (define-public mysql
   (package
     (name "mysql")
-- 
2.13.1

  parent reply	other threads:[~2017-07-29 16:37 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-27 16:45 [bug#27853] [PATCH] Add memcached package, service and system test Christopher Baines
2017-07-27 16:49 ` [bug#27853] [PATCH 1/2] gnu: Add memcached Christopher Baines
2017-07-27 16:49   ` [bug#27853] [PATCH 2/2] services: " Christopher Baines
2017-07-28 19:46     ` Ludovic Courtès
2017-07-29 16:35       ` Christopher Baines
2017-07-28 19:41   ` [bug#27853] [PATCH 1/2] gnu: " Ludovic Courtès
2017-07-29 11:37     ` Marius Bakke
2017-07-29 16:24       ` Christopher Baines
2017-07-29 16:36 ` Christopher Baines [this message]
2017-07-29 16:36   ` [bug#27853] [PATCH 2/2] services: " Christopher Baines
2017-07-29 20:23     ` Ludovic Courtès
2017-07-30  8:13       ` bug#27853: " Christopher Baines
2017-07-29 20:22   ` [bug#27853] [PATCH 1/2] gnu: " Ludovic Courtès

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170729163623.13531-1-mail@cbaines.net \
    --to=mail@cbaines.net \
    --cc=27853@debbugs.gnu.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 external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.