summaryrefslogtreecommitdiff
path: root/checks/nixfmt/package.nix
blob: ab4d88cb4e4061ca3ddc7d53bc8d6115d2c9a9d0 (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
''