concatText
pkgs.concatText
Docs pulled from | This Revision | 10 minutes ago
Writes a text file to nix store with no optional parameters available.
Inputs
name
-
1. Function argument
files
-
2. Function argument
Examples
concatText
usage example
# Writes contents of files to /nix/store/<store path>
concatText "my-file" [ file1 file2 ]
Noogle detected
Implementation
The following is the current implementation of this function.
concatText = name: files: concatTextFile { inherit name files; };