efraim pushed a commit to branch master
in repository guix.
commit 2e09516ea5293412c3b569c245bc2e7ec5c42e38
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Jan 3 09:19:47 2022 +0200
gnu: alive: Update to 2.0.5.
* gnu/packages/admin.scm (alive): Update to 2.0.5.
[inputs]: Replace guile-2.0 with guile-3.0.
[native-inputs]: Add lzip.
---
gnu/packages/admin.scm | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index f42a644bf0..0eef80f325 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -9,7 +9,7 @@
;;; Copyright © 2016, 2017, 2020 Leo Famulari <[email protected]>
;;; Copyright © 2016 Pjotr Prins <[email protected]>
;;; Copyright © 2016, 2017 Ricardo Wurmus <[email protected]>
-;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner
<[email protected]>
+;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner
<[email protected]>
;;; Copyright © 2016 Peter Feigl <[email protected]>
;;; Copyright © 2016 John J. Foerch <[email protected]>
;;; Copyright © 2016, 2017 Nikita <[email protected]>
@@ -1138,17 +1138,21 @@ recursive runs on the generated subnets. (also IPv6)
(define-public alive
(package
(name "alive")
- (version "2.0.3")
+ (version "2.0.5")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/alive/alive-"
- version ".tar.xz"))
+ version ".tar.lz"))
(sha256
(base32
- "053hfp7s66lnilm1ii4jrjmy44wpa2cwwh6f0sl8cyz0mm813x4b"))))
+ "12ahlxbbrynm6md8qc872qr795lqpfkr8kwlsig40i4nznzkvkwl"))))
(build-system gnu-build-system)
(arguments '(#:configure-flags '("alive_cv_nice_ping=yes")))
- (inputs (list guile-2.0 inetutils))
+ (inputs
+ (list guile-3.0
+ inetutils))
+ (native-inputs
+ (list lzip))
(home-page "https://www.gnu.org/software/alive/")
(synopsis "Autologin and keep-alive daemon")
(description