writeTextFile: allow passing extra derivationArgs

This commit is contained in:
Bernardo Meurer 2021-11-08 09:28:58 -08:00
parent d8ec0eeab7
commit ba7b7357ac
No known key found for this signature in database
GPG Key ID: F4C0D53B8D14C246

View File

@ -111,9 +111,10 @@ rec {
, executable ? false # run chmod +x ?
, destination ? "" # relative path appended to $out eg "/bin/foo"
, checkPhase ? "" # syntax checks, e.g. for scripts
, meta ? { }
}:
runCommand name
{ inherit text executable checkPhase;
{ inherit text executable checkPhase meta;
passAsFile = [ "text" ];
# Pointless to do this on a remote machine.
preferLocalBuild = true;