diff options
author | Christopher Baines <mail@cbaines.net> | 2017-07-27 17:11:33 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2017-07-30 09:06:52 +0100 |
commit | 686144e986518a27180ff9099c3e419a89e6101c (patch) | |
tree | bff3e98b878f897af1fd59079540f3574c0a47bd /gnu/packages | |
parent | c00c90ca37f98b9710fa51cffed3e3135880fd99 (diff) | |
download | guix-686144e986518a27180ff9099c3e419a89e6101c.tar guix-686144e986518a27180ff9099c3e419a89e6101c.tar.gz |
gnu: Add memcached.
* gnu/packages/databases.scm (memcached): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/databases.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 8f5857ad7d..13efc5edca 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") |