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

11 lines
343 B
Nix
Raw Normal View History

2025-03-26 16:14:46 +00:00
{ writeShellApplication, nixfmt, deadnix, statix, llvmPackages_19, fd, }:
2025-02-06 23:35:40 +00:00
writeShellApplication {
name = "formatter";
2025-03-26 16:14:46 +00:00
runtimeInputs = [ nixfmt deadnix statix llvmPackages_19.clang-tools fd ];
2025-02-06 23:35:40 +00:00
text = ''
2025-03-26 16:14:46 +00:00
fd -e nix -X nixfmt {} \; -X deadnix -e {}
fd -e nix -x statix fix {}
fd -e c -e h -X clang-format --verbose -i {}
2025-02-06 23:35:40 +00:00
'';
}