This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch version-1.3.0
in repository guix.
The following commit(s) were added to refs/heads/version-1.3.0 by this push:
new 7a65bef system: Add wget to %base-packages-networking.
7a65bef is described below
commit 7a65beff0f3c3958ae38087bb7b565e981e99ac1
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Fri May 7 12:17:26 2021 -0400
system: Add wget to %base-packages-networking.
Fixes <https://issues.guix.gnu.org/43530>.
Wget is typically included with most GNU/Linux distributions. It adds about
~3 MiB to the system size.
* gnu/system.scm (%base-packages-networking): Add the wget package.
---
gnu/system.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/system.scm b/gnu/system.scm
index 5bf2a85..675f669 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -62,6 +62,7 @@
#:use-module (gnu packages package-management)
#:use-module (gnu packages pciutils)
#:use-module (gnu packages texinfo)
+ #:use-module (gnu packages wget)
#:use-module (gnu packages zile)
#:use-module (gnu services)
#:use-module (gnu services shepherd)
@@ -806,6 +807,7 @@ of PROVENANCE-SERVICE-TYPE to its services."
;; Default set of networking packages.
(list inetutils isc-dhcp
iproute
+ wget
;; wireless-tools is deprecated in favor of iw, but it's still what
;; many people are familiar with, so keep it around.
iw wireless-tools))