Merge pull request #326832 from Scrumplex/root/devShell/nixpkgs-review

root: add nixpkgs-review to shell.nix
This commit is contained in:
Silvan Mosberger
2024-08-07 23:40:17 +02:00
committed by GitHub
+8 -5
View File
@@ -17,14 +17,17 @@ let
pkgs = import nixpkgs {
inherit system;
config = {};
overlays = [];
config = { };
overlays = [ ];
};
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
];
}