guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: redis: Update to 3.2.4.


From: David Thompson
Subject: 01/01: gnu: redis: Update to 3.2.4.
Date: Tue, 11 Oct 2016 16:25:02 +0000 (UTC)

davexunit pushed a commit to branch master
in repository guix.

commit b25f060fbde97bd4f9863c8521396639d53b8831
Author: David Thompson <address@hidden>
Date:   Tue Oct 11 10:54:28 2016 -0400

    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.
---
 gnu/packages/databases.scm |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index eb8e7d7..902b3f3 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -952,14 +952,14 @@ similar to BerkeleyDB, LevelDB, etc.")
 (define-public redis
   (package
     (name "redis")
-    (version "3.2.3")
+    (version "3.2.4")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://download.redis.io/releases/redis-";
                                   version".tar.gz"))
               (sha256
                (base32
-                "05az2g3gna5lkhh6x1a5m6yardbiig1l4ysggldlk5if8ww9qkk7"))))
+                "1wb9jd692a0y52bkkxr6815kk4g039mirjdrvqx24265lv2l5l1a"))))
     (build-system gnu-build-system)
     (arguments
      '(#:tests? #f ; tests related to master/slave and replication fail
@@ -967,6 +967,7 @@ similar to BerkeleyDB, LevelDB, etc.")
                   (delete 'configure))
        #:make-flags `("CC=gcc"
                       "MALLOC=libc"
+                      "LDFLAGS=-ldl"
                       ,(string-append "PREFIX="
                                       (assoc-ref %outputs "out")))))
     (synopsis "Key-value cache and store")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]