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