summaryrefslogtreecommitdiff
path: root/checks/rustfmt/package.nix
blob: ef12b4989b5d9367a43cd8fd38eb48052e83736f (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  runCommand,
  root,
  cargo,
  rustfmt,
}:
runCommand "check-rustfmt" {nativeBuildInputs = [cargo rustfmt];} ''
  cd ${root}
  cargo fmt -- --check
  touch $out
''