writeScriptBin
pkgs.writeScriptBin
Docs pulled from | This Revision | 4 days ago
Noogle detected
Implementation
The following is the current implementation of this function.
writeScriptBin =
name: text:
writeTextFile {
inherit name text;
executable = true;
destination = "/bin/${name}";
meta.mainProgram = name;
};