mirror of
https://github.com/FliegendeWurst/ripgrep-all.git
synced 2024-11-08 14:00:37 +00:00
Include cargo, nixfmt, rustc, and rustfmt in devShell
This commit is contained in:
parent
8c47d6d9ba
commit
84b2a2c3bb
@ -61,6 +61,7 @@
|
||||
|
||||
pre-commit = pre-commit-hooks.lib."${system}".run;
|
||||
in {
|
||||
# `nix flake check`
|
||||
checks = {
|
||||
# Build the crate as part of `nix flake check` for convenience
|
||||
inherit rga;
|
||||
@ -91,8 +92,7 @@
|
||||
partitionType = "count";
|
||||
};
|
||||
|
||||
inherit pre-commit;
|
||||
pre-commit-check = pre-commit {
|
||||
pre-commit = pre-commit {
|
||||
src = ./.;
|
||||
hooks = {
|
||||
nixfmt.enable = true;
|
||||
@ -115,9 +115,10 @@
|
||||
|
||||
# `nix develop`
|
||||
devShells.default = pkgs.mkShell {
|
||||
inherit (self.checks.${system}.pre-commit-check) shellHook;
|
||||
inherit (self.checks.${system}.pre-commit) shellHook;
|
||||
inputsFrom = builtins.attrValues self.checks;
|
||||
buildInputs = buildInputs;
|
||||
buildInputs = buildInputs
|
||||
++ (with pkgs; [ cargo nixfmt rustc rustfmt ]);
|
||||
};
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user