query
On this page

concatScript

pkgs.concatScript

Docs pulled from | This Revision | about 1 hour ago


Writes a text file to nix store with and mark it as executable.

Example:

Writes contents of files to /nix/store/

concatScript "my-file" [ file1 file2 ]


Noogle detected

Implementation

The following is the current implementation of this function.

concatScript =
    name: files:
    concatTextFile {
      inherit name files;
      executable = true;
    };