root: add nixpkgs-review to shell.nix

nixpkgs-review is endorsed in CONTRIBUTING.md, as well as in the default
PR description template. It would be very useful to include this utility
in our shell.nix.

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2024-07-13 16:04:05 +02:00
parent b80884dcae
commit f696c96028
No known key found for this signature in database
GPG key ID: E13DFD4B47127951

View file

@ -22,9 +22,12 @@ let
}; };
in in
pkgs.mkShellNoCC { pkgs.mkShellNoCC {
packages = [ packages = with pkgs; [
# The default formatter for Nix code # The default formatter for Nix code
# https://github.com/NixOS/nixfmt # See https://github.com/NixOS/nixfmt
pkgs.nixfmt-rfc-style nixfmt-rfc-style
# Helper to review Nixpkgs PRs
# See CONTRIBUTING.md
nixpkgs-review
]; ];
} }