writeTextFile: allow passing extra derivationArgs
This commit is contained in:
parent
d8ec0eeab7
commit
ba7b7357ac
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue