mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
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:
parent
3ab48ed6cd
commit
7a65beff0f
1 changed files with 2 additions and 0 deletions
|
@ -62,6 +62,7 @@ (define-module (gnu system)
|
|||
#: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 @@ (define %base-packages-networking
|
|||
;; 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))
|
||||
|
|
Loading…
Reference in a new issue