aboutsummaryrefslogtreecommitdiff
path: root/maintainers/check-headers.nix
blob: a184bb40122d161f75cfbdbb3f99948140a44e52 (plain)
1
2
3
4
5
6
7
{ writeShellApplication, gnugrep }:
writeShellApplication {
  name = "check-headers";

  runtimeInputs = [ gnugrep ];
  text = builtins.readFile ./check-headers.sh;
}