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