mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add redis.
* gnu/packages/databases.scm (redis): New variable.
This commit is contained in:
parent
0abe1d86f5
commit
463f676682
1 changed files with 28 additions and 1 deletions
|
@ -43,7 +43,7 @@ (define-module (gnu packages databases)
|
||||||
#:use-module (gnu packages jemalloc)
|
#:use-module (gnu packages jemalloc)
|
||||||
#:use-module ((guix licenses)
|
#:use-module ((guix licenses)
|
||||||
#:select (gpl2 gpl3+ lgpl2.1+ lgpl3+ x11-style non-copyleft
|
#:select (gpl2 gpl3+ lgpl2.1+ lgpl3+ x11-style non-copyleft
|
||||||
bsd-2 public-domain))
|
bsd-2 bsd-3 public-domain))
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
@ -727,3 +727,30 @@ (define-public unqlite
|
||||||
MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store
|
MongoDB, Redis, CouchDB, etc. as well as a standard Key/Value store
|
||||||
similar to BerkeleyDB, LevelDB, etc.")
|
similar to BerkeleyDB, LevelDB, etc.")
|
||||||
(license bsd-2)))
|
(license bsd-2)))
|
||||||
|
|
||||||
|
(define-public redis
|
||||||
|
(package
|
||||||
|
(name "redis")
|
||||||
|
(version "3.0.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://download.redis.io/releases/redis-"
|
||||||
|
version".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"19cxdrk380qachw160h1x51mwj7kpkxlggfzfh19bl0nbdkgl20x"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f ; tests related to master/slave and replication fail
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(delete 'configure))
|
||||||
|
#:make-flags `("CC=gcc"
|
||||||
|
"MALLOC=libc"
|
||||||
|
,(string-append "PREFIX="
|
||||||
|
(assoc-ref %outputs "out")))))
|
||||||
|
(synopsis "Key-value cache and store")
|
||||||
|
(description "Redis is an advanced key-value cache and store. Redis
|
||||||
|
supports many data structures including strings, hashes, lists, sets, sorted
|
||||||
|
sets, bitmaps and hyperloglogs.")
|
||||||
|
(home-page "http://redis.io/")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
Loading…
Reference in a new issue