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