summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-05-07 12:17:26 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-05-07 17:20:41 -0400
commit7a65beff0f3c3958ae38087bb7b565e981e99ac1 (patch)
tree4f05ccad9379e1c0edefba54a951c910794002cd
parent3ab48ed6cd4b1f87a4c339b172dd8a107478654c (diff)
system: Add wget to %base-packages-networking.v1.3.0rc2
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.
-rw-r--r--gnu/system.scm2
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))