diff options
author | Andreas Enge <andreas@enge.fr> | 2023-04-16 20:52:35 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2023-04-16 20:52:40 +0200 |
commit | 424ee72ffbdf9a79eee4dd4aac43404167e66083 (patch) | |
tree | 2375f8f2cb8e0421e577375e42a192a9b3225cc7 /gnu/packages/wget.scm | |
parent | e438a3b3dd7f66a06ce758e3f802fd224e796e21 (diff) | |
download | guix-424ee72ffbdf9a79eee4dd4aac43404167e66083.tar.gz |
gnu: wget: Update to 1.21.3.24.
This update to a non-release version fixes a build failure on i686-linux. * gnu/packages/wget.scm (wget): Update to 1.21.3.24. [origin]: Use a self-hosted tarball created from the latest git commit.
Diffstat (limited to 'gnu/packages/wget.scm')
-rw-r--r-- | gnu/packages/wget.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm index 083cf27212..17459344c0 100644 --- a/gnu/packages/wget.scm +++ b/gnu/packages/wget.scm @@ -46,15 +46,16 @@ (define-public wget (package (name "wget") - (version "1.21.3") + (version "1.21.3.24") (source (origin (method url-fetch) - (uri (string-append "mirror://gnu/wget/wget-" - version ".tar.lz")) + ;;(uri (string-append "mirror://gnu/wget/wget-" + ;; version ".tar.lz")) + (uri "https://www.multiprecision.org/wget-1.21.3.24-2b723.tar.lz") (sha256 (base32 - "19afmyr1i3zwdwr8wkyz8q6z5764ik3dm87as194g78l8xggplnv")))) + "17ip94mvax83h0gh4905jqc64g5qf3vgxr3bj9gn02pijjm5lzbp")))) (build-system gnu-build-system) (inputs (list gnutls libidn2 libpsl)) |