Merge pull request #248419 from khaneliman/wget

authored by Franz Pletz and committed by GitHub bd49e6dc eb1bc858

+3 -2
+3 -2
pkgs/tools/networking/wget/default.nix
··· 47 47 48 48 meta = with lib; { 49 49 description = "Tool for retrieving files using HTTP, HTTPS, and FTP"; 50 + homepage = "https://www.gnu.org/software/wget/"; 51 + license = licenses.gpl3Plus; 50 52 longDescription = 51 53 '' GNU Wget is a free software package for retrieving files using HTTP, 52 54 HTTPS and FTP, the most widely-used Internet protocols. It is a 53 55 non-interactive commandline tool, so it may easily be called from 54 56 scripts, cron jobs, terminals without X-Windows support, etc. 55 57 ''; 56 - license = licenses.gpl3Plus; 57 - homepage = "https://www.gnu.org/software/wget/"; 58 + mainProgram = "wget"; 58 59 maintainers = with maintainers; [ fpletz ]; 59 60 platforms = platforms.all; 60 61 };