forked from lix-project/lix
8 lines
167 B
Nix
8 lines
167 B
Nix
|
{ writeShellApplication, gnugrep }:
|
||
|
writeShellApplication {
|
||
|
name = "check-headers";
|
||
|
|
||
|
runtimeInputs = [ gnugrep ];
|
||
|
text = builtins.readFile ./check-headers.sh;
|
||
|
}
|