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

23 lines
314 B
Nix
Raw Normal View History

2025-03-26 15:08:13 +00:00
{
writeShellApplication,
fd,
statix,
nixfmt-rfc-style,
deadnix,
nim-2_0,
}:
writeShellApplication {
name = "linter";
runtimeInputs = [
fd
statix
nixfmt-rfc-style
deadnix
nim-2_0
];
text = ''
fd -e nix -X deadnix -e \; -X nixfmt {}
fd -e nix -x statix fix {}
'';
}