diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-05-28 22:18:40 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-05-28 22:18:40 +0300 |
commit | 81803c5eaae4ac6d48415a47b5d92de7a9e18b1a (patch) | |
tree | 100c65cd42bbf12125f8d611531be5c17e534ee3 /gnu/packages/wget.scm | |
parent | 39227724e8edccc8aa6e62be8920bf3c0c4579b0 (diff) | |
download | guix-81803c5eaae4ac6d48415a47b5d92de7a9e18b1a.tar.gz |
gnu: wget2: Update to 2.0.1.
* gnu/packages/wget.scm (wget2): Update to 2.0.1. [arguments]: Remove trailing #t from phases.
Diffstat (limited to 'gnu/packages/wget.scm')
-rw-r--r-- | gnu/packages/wget.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm index 9d23ecdaef..f5b7a5b91f 100644 --- a/gnu/packages/wget.scm +++ b/gnu/packages/wget.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org> ;;; Copyright © 2014, 2015, 2017, 2018 Ludovic Courtès <ludo@gnu.org> -;;; Copyright © 2016, 2017, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2017, 2019-2022 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> @@ -135,14 +135,14 @@ online pastebin services.") (define-public wget2 (package (name "wget2") - (version "2.0.0") + (version "2.0.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/wget/wget2-" version ".tar.gz")) (sha256 (base32 - "0i0m4k6w9smsr2m5mj05zvl1fb110izyl2qqrk0yqlxnmfhgpqjg")))) + "1caxhkwk08z3npzw8x2qhkmjc224cfw1aphvbv8bidbvd41zmdqb")))) (build-system gnu-build-system) (arguments `(#:phases @@ -152,8 +152,7 @@ online pastebin services.") (substitute* "tests/Makefile.in" (("test-gpg-verify-no-file\\$\\(EXEEXT)") "") (("test-gpg-valid\\$\\(EXEEXT)") "") - (("test-gpg-styles\\$\\(EXEEXT)") "")) - #t))) + (("test-gpg-styles\\$\\(EXEEXT)") ""))))) #:configure-flags '("--enable-static=no"))) (inputs (list bzip2 |