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