From 2e76f1b474f0c35adeb2768eebcbdda39fc68d15 Mon Sep 17 00:00:00 2001 From: Fernando Rodrigues Date: Mon, 24 Mar 2025 16:02:09 -0300 Subject: [PATCH] shell.nix: include gh in the default shell GitHub's CLI is now used by nixpkgs-review to fetch Nixpkgs evaluation results from GitHub Actions. Including it in the default shell will allow all contributors to easily log-in to GitHub when nixpkgs-review tries to fetch evaluation results. Signed-off-by: Fernando Rodrigues --- shell.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell.nix b/shell.nix index ecb444e75ec0..d8235f187559 100644 --- a/shell.nix +++ b/shell.nix @@ -35,5 +35,8 @@ curPkgs # Helper to review Nixpkgs PRs # See CONTRIBUTING.md nixpkgs-review + # Command-line utility for working with GitHub + # Used by nixpkgs-review to fetch eval results + gh ]; }