22 lines
314 B
Nix
22 lines
314 B
Nix
{
|
|
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 {}
|
|
'';
|
|
}
|