summaryrefslogtreecommitdiffstats
path: root/internal/formatter.nix
blob: ce27ec6a7556f7031c74eae3c99e45be85e5e532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pkgs:
pkgs.writeShellApplication {
  name = "nix3-fmt-wrapper";

  runtimeInputs = [
    pkgs.alejandra
    pkgs.fd
  ];

  text = ''
    fd "$@" -t f -e nix -x alejandra -q '{}'
  '';
}