blob: d1a1cb425ae3569e86d8002013e89d96c45a2100 (
plain) (
tree)
|
|
# Builds treefmt for depot, with a hardcoded configuration that
# includes the right paths to formatters.
{ depot, pkgs, ... }:
let
config = pkgs.writeText "depot-treefmt-config" ''
[formatter.go]
command = "${pkgs.go}/bin/gofmt"
options = [ "-w" ]
includes = ["*.go"]
[formatter.tf]
command = "${pkgs.terraform}/bin/terraform"
options = [ "fmt" ]
includes = [ "*.tf" ]
'';
# helper tool for formatting the depot interactively
depotfmt = pkgs.writeShellScriptBin "depotfmt" ''
exec ${pkgs.treefmt}/bin/treefmt ''${@} \
--config-file ${config} \
--tree-root $(${pkgs.git}/bin/git rev-parse --show-toplevel)
'';
# wrapper for running formatting checks in CI
check = pkgs.runCommandNoCC "depotfmt-check" {} ''
${pkgs.git}/bin/git clone ${depot.path.origSrc} depot
export HOME="$(${pkgs.coreutils}/bin/realpath .)"
${pkgs.treefmt}/bin/treefmt \
--fail-on-change \
--config-file ${config} \
--tree-root depot && : > $out
'';
in depotfmt // depot.nix.readTree.drvTargets { inherit check; }
|