Unverified Commit f696c960 authored by Sefa Eyeoglu's avatar Sefa Eyeoglu
Browse files

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: default avatarSefa Eyeoglu <contact@scrumplex.net>
parent b80884dc
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -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
  ];
}