flake-template-hell/templates/rust/nix/formatter.nix

11 lines
297 B
Nix
Raw Normal View History

2025-03-26 15:08:13 +00:00
{ writeShellApplication, fd, nixfmt, deadnix, statix, rustfmt }:
writeShellApplication {
name = "liner";
runtimeInputs = [ fd nixfmt deadnix statix rustfmt ];
text = ''
fd -e nix -X nixfmt {} \; -X deadnix -e {} \;
fd -e nix -x statix fix {} \;
fd -e rs -X rustfmt {} \;
'';
}