diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-09-13 09:04:40 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-09-13 09:04:40 -0400 |
commit | 785fb60e1fd7ed380e9b68b00e9ca89852ec5a3d (patch) | |
tree | abc5754ded50a63fc0121bb3a13551cb04427ba5 /gnu | |
parent | 0081410da011228ce0eef83f50b13bf70932fd3f (diff) | |
download | gnu-guix-785fb60e1fd7ed380e9b68b00e9ca89852ec5a3d.tar gnu-guix-785fb60e1fd7ed380e9b68b00e9ca89852ec5a3d.tar.gz |
gnu: redis: Update to 3.0.4
* gnu/packages/databases.scm (redis): Update to 3.0.4.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 53a73a208b..c11395926a 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -738,14 +738,14 @@ similar to BerkeleyDB, LevelDB, etc.") (define-public redis (package (name "redis") - (version "3.0.3") + (version "3.0.4") (source (origin (method url-fetch) (uri (string-append "http://download.redis.io/releases/redis-" version".tar.gz")) (sha256 (base32 - "19cxdrk380qachw160h1x51mwj7kpkxlggfzfh19bl0nbdkgl20x")))) + "1kqjc4qrasadgnl3cg71x3g5qpw2rilyk4pwl151698rb2nr0pm3")))) (build-system gnu-build-system) (arguments '(#:tests? #f ; tests related to master/slave and replication fail |