mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03: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:
parent
b80884dcae
commit
f696c96028
1 changed files with 6 additions and 3 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue