1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00

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
pkgs.mkShellNoCC {
packages = [
packages = with pkgs; [
# The default formatter for Nix code
# https://github.com/NixOS/nixfmt
pkgs.nixfmt-rfc-style
# See https://github.com/NixOS/nixfmt
nixfmt-rfc-style
# Helper to review Nixpkgs PRs
# See CONTRIBUTING.md
nixpkgs-review
];
}