From a44e2dba40e1fb0652bcbaa7587f34f89f360ed7 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Thu, 10 Aug 2023 16:20:36 -0500 Subject: [PATCH] wget: add meta.mainProgram --- pkgs/tools/networking/wget/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/wget/default.nix b/pkgs/tools/networking/wget/default.nix index 1c18e632b19f..d5cec9284550 100644 --- a/pkgs/tools/networking/wget/default.nix +++ b/pkgs/tools/networking/wget/default.nix @@ -47,14 +47,15 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Tool for retrieving files using HTTP, HTTPS, and FTP"; + homepage = "https://www.gnu.org/software/wget/"; + license = licenses.gpl3Plus; longDescription = '' 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. ''; - license = licenses.gpl3Plus; - homepage = "https://www.gnu.org/software/wget/"; + mainProgram = "wget"; maintainers = with maintainers; [ fpletz ]; platforms = platforms.all; };