This is an automated email from the git hooks/post-receive script.
nckx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6b0b6bb gnu: goaccess: Update to 1.5.2.
6b0b6bb is described below
commit 6b0b6bb4a21afab9720df9f04d531af9ab804673
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Sat Oct 23 23:19:42 2021 +0200
gnu: goaccess: Update to 1.5.2.
* gnu/packages/web.scm (goaccess): Update to 1.5.2.
[arguments]: Don't explicitly return #t from phases.
---
gnu/packages/web.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 7d7a3c4..dc5a9d6 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -5823,20 +5823,19 @@ config files---you only have to specify the www root.")
(define-public goaccess
(package
(name "goaccess")
- (version "1.5.1")
+ (version "1.5.2")
(source (origin
(method url-fetch)
(uri (string-append "http://tar.goaccess.io/goaccess-"
version ".tar.gz"))
(sha256
(base32
- "03wp75n1krv8g643q00gcv1ikmzwwh8jjqmph0wxww1bwrw7whc8"))
+ "12hwmd9cn7yy7vj92110skjaslpxkn05msb9wj228qmjjf9jzkm0"))
(modules '((guix build utils)))
(snippet '(begin
(substitute* "src/error.h"
(("__DATE__") "\"1970-01-01\"")
- (("__TIME__") "\"00:00:00\""))
- #t))))
+ (("__TIME__") "\"00:00:00\""))))))
(build-system gnu-build-system)
(inputs
;; TODO: Add dependency on geoip-tools.