writeScript
pkgs.writeScript
Docs pulled from | This Revision | 10 minutes ago
Noogle detected
Implementation
The following is the current implementation of this function.
writeScript =
name: text:
writeTextFile {
inherit name text;
executable = true;
};