mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: redis: Update to 3.2.4.
* gnu/packages/databases.scm (redis): Update to 3.2.4. [arguments]: Add LDFLAGS to #:make-flags to work around missing linker flag.
This commit is contained in:
parent
65375f74bc
commit
b25f060fbd
1 changed files with 3 additions and 2 deletions
|
@ -952,14 +952,14 @@ (define-public unqlite
|
||||||
(define-public redis
|
(define-public redis
|
||||||
(package
|
(package
|
||||||
(name "redis")
|
(name "redis")
|
||||||
(version "3.2.3")
|
(version "3.2.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://download.redis.io/releases/redis-"
|
(uri (string-append "http://download.redis.io/releases/redis-"
|
||||||
version".tar.gz"))
|
version".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"05az2g3gna5lkhh6x1a5m6yardbiig1l4ysggldlk5if8ww9qkk7"))))
|
"1wb9jd692a0y52bkkxr6815kk4g039mirjdrvqx24265lv2l5l1a"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; tests related to master/slave and replication fail
|
'(#:tests? #f ; tests related to master/slave and replication fail
|
||||||
|
@ -967,6 +967,7 @@ (define-public redis
|
||||||
(delete 'configure))
|
(delete 'configure))
|
||||||
#:make-flags `("CC=gcc"
|
#:make-flags `("CC=gcc"
|
||||||
"MALLOC=libc"
|
"MALLOC=libc"
|
||||||
|
"LDFLAGS=-ldl"
|
||||||
,(string-append "PREFIX="
|
,(string-append "PREFIX="
|
||||||
(assoc-ref %outputs "out")))))
|
(assoc-ref %outputs "out")))))
|
||||||
(synopsis "Key-value cache and store")
|
(synopsis "Key-value cache and store")
|
||||||
|
|
Loading…
Reference in a new issue