diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2016-05-06 09:11:08 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2016-05-06 09:11:34 -0400 |
commit | 218a21069ad5bb34e6d2a36a9d126fc3056d7c58 (patch) | |
tree | 519bfacfe5fb2880731a8820c150001b979ee054 /gnu | |
parent | e42eb908f6133c4c192b4a4ff17d52a4819c2a2e (diff) | |
download | guix-218a21069ad5bb34e6d2a36a9d126fc3056d7c58.tar.gz guix-218a21069ad5bb34e6d2a36a9d126fc3056d7c58.zip |
gnu: redis: Update to 3.2.0.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 63ca754688..a8998d803d 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2012, 2014, 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com> -;;; Copyright © 2014 David Thompson <davet@gnu.org> +;;; Copyright © 2014, 2016 David Thompson <davet@gnu.org> ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com> @@ -863,14 +863,14 @@ similar to BerkeleyDB, LevelDB, etc.") (define-public redis (package (name "redis") - (version "3.0.7") + (version "3.2.0") (source (origin (method url-fetch) (uri (string-append "http://download.redis.io/releases/redis-" version".tar.gz")) (sha256 (base32 - "08vzfdr67gp3lvk770qpax2c5g2sx8hn6p64jn3jddrvxb2939xj")))) + "0ql7zp061xr66a1dzpa6a0ijm8zm133dd364va7q5h8avkrim7wq")))) (build-system gnu-build-system) (arguments '(#:tests? #f ; tests related to master/slave and replication fail |