mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-09 16:33:57 -05:00
20 lines
304 B
Nix
20 lines
304 B
Nix
{
|
|
writeShellApplication,
|
|
nixfmt,
|
|
deadnix,
|
|
statix,
|
|
fd,
|
|
}:
|
|
writeShellApplication {
|
|
name = "lint";
|
|
runtimeInputs = [
|
|
nixfmt
|
|
deadnix
|
|
statix
|
|
fd
|
|
];
|
|
text = ''
|
|
fd "$@" -t f -e nix -x statix fix -- '{}'
|
|
fd "$@" -t f -e nix -X deadnix -e -- '{}' \; -X nixfmt '{}'
|
|
'';
|
|
}
|