summaryrefslogtreecommitdiff
path: root/checks/nixfmt/package.nix
blob: faff3c121223afd02d9fdb84a0b481384fda5921 (plain)
1
2
3
4
5
6
7
8
9
10
{
  lib,
  runCommand,
  nixfmt-rfc-style,
  root,
}:
runCommand "check-nixfmt" { } ''
  ${lib.getExe nixfmt-rfc-style} --check ${root}
  touch $out
''