From dcc7610bb11ffa1fb75801071c55b5cfca640957 Mon Sep 17 00:00:00 2001 From: Gabriella Gonzalez Date: Mon, 12 Sep 2022 08:19:41 -0700 Subject: [PATCH] awscli: Set meta.mainProgram MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … so that `nix run nixpkgs#awscli` works --- pkgs/tools/admin/awscli/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix index df3953b030fd..92f166c9cfbf 100644 --- a/pkgs/tools/admin/awscli/default.nix +++ b/pkgs/tools/admin/awscli/default.nix @@ -90,6 +90,7 @@ with py.pkgs; buildPythonApplication rec { homepage = "https://aws.amazon.com/cli/"; description = "Unified tool to manage your AWS services"; license = licenses.asl20; + mainProgram = "aws"; maintainers = with maintainers; [ ]; }; }