diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-09 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:01 +0200 |
commit | 6c67d3b026365d283b80fafa94012d2b0ac646af (patch) | |
tree | be821fe3dd99cf3df519f4b09365f2dd7198638a | |
parent | 4d87d98aeeade0d229d10052db2794091cf5daaf (diff) | |
download | guix-6c67d3b026365d283b80fafa94012d2b0ac646af.tar.gz |
gnu: redis: Update to 7.0.12.
* gnu/packages/databases.scm (redis): Update to 7.0.12. [arguments]: Ever so slightly tweak style.
-rw-r--r-- | gnu/packages/databases.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 0c4cd24f6d..84cc22cc8f 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2420,14 +2420,14 @@ similar to BerkeleyDB, LevelDB, etc.") (define-public redis (package (name "redis") - (version "7.0.9") + (version "7.0.12") (source (origin (method url-fetch) (uri (string-append "https://download.redis.io/releases/redis-" version".tar.gz")) (sha256 (base32 - "0rczzcy2mwy6hjdgg10l9lr4vavh8jrs7zlb0ba534bwlk13awgp")) + "1dwayif99cipf0xs26zipbnj800px31pbsxz747bzclb4xdkvn4x")) (modules '((guix build utils))) (snippet ;; Delete bundled jemalloc, as the package will use the libc one @@ -2435,7 +2435,7 @@ similar to BerkeleyDB, LevelDB, etc.") (build-system gnu-build-system) (arguments (list - #:make-flags #~(list #$(string-append "CC=" (cc-for-target)) + #:make-flags #~(list (string-append "CC=" #$(cc-for-target)) "MALLOC=libc" "LDFLAGS=-ldl" (string-append "PREFIX=" #$output)) @@ -2452,7 +2452,7 @@ similar to BerkeleyDB, LevelDB, etc.") (which "env"))))) (add-after 'unpack 'adjust-tests (lambda _ - ;; Disable failing tests + ;; Disable failing tests. (substitute* "tests/test_helper.tcl" ;; The AOF tests cause the test suite to hang waiting for a ;; "background AOF rewrite to finish", perhaps because dead |