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.
This commit is contained in:
Maxim Cournoyer 2021-05-07 12:17:26 -04:00
parent 3ab48ed6cd
commit 7a65beff0f
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 2 additions and 0 deletions

View File

@ -62,6 +62,7 @@
#:use-module (gnu packages package-management) #:use-module (gnu packages package-management)
#:use-module (gnu packages pciutils) #:use-module (gnu packages pciutils)
#:use-module (gnu packages texinfo) #:use-module (gnu packages texinfo)
#:use-module (gnu packages wget)
#:use-module (gnu packages zile) #:use-module (gnu packages zile)
#:use-module (gnu services) #:use-module (gnu services)
#:use-module (gnu services shepherd) #:use-module (gnu services shepherd)
@ -806,6 +807,7 @@ of PROVENANCE-SERVICE-TYPE to its services."
;; Default set of networking packages. ;; Default set of networking packages.
(list inetutils isc-dhcp (list inetutils isc-dhcp
iproute iproute
wget
;; wireless-tools is deprecated in favor of iw, but it's still what ;; wireless-tools is deprecated in favor of iw, but it's still what
;; many people are familiar with, so keep it around. ;; many people are familiar with, so keep it around.
iw wireless-tools)) iw wireless-tools))