diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-05-07 12:17:26 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-05-07 17:20:41 -0400 |
commit | 7a65beff0f3c3958ae38087bb7b565e981e99ac1 (patch) | |
tree | 4f05ccad9379e1c0edefba54a951c910794002cd /gnu | |
parent | 3ab48ed6cd4b1f87a4c339b172dd8a107478654c (diff) | |
download | guix-7a65beff0f3c3958ae38087bb7b565e981e99ac1.tar.gz guix-7a65beff0f3c3958ae38087bb7b565e981e99ac1.zip |
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.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index 5bf2a85272..675f6692bf 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)) |