wget

wget 1.25.0

Tool for retrieving files using HTTP, HTTPS, and FTP

<rendered-html><p>GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc.</p> </rendered-html>

https://www.gnu.org/software/wget/
GNU General Public License v3.0 or later
main program: wgetprograms: wget
Platforms (80)
or1k-noneriscv64-netbsdpowerpc64-linuxx86_64-uefimicroblazeel-nones390-linuxarmv6l-noneaarch64-darwin
View source on NixOS/nixpkgs →

Install

Copy into your configuration

NixOS (configuration.nix)
environment.systemPackages = with pkgs; [
  wget
];
Ad-hoc shell
nix-shell -p wget
Flake (nix run)
nix run nixpkgs#wget