Skip to content

Commit f478913

Browse files
committed
concatTextFile: add passthru argument
1 parent c18e038 commit f478913

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkgs/build-support/trivial-builders/default.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,10 @@ rec {
368368
, destination ? "" # relative path appended to $out eg "/bin/foo"
369369
, checkPhase ? "" # syntax checks, e.g. for scripts
370370
, meta ? { }
371+
, passthru ? { }
371372
}:
372373
runCommandLocal name
373-
{ inherit files executable checkPhase meta destination; }
374+
{ inherit files executable checkPhase meta passthru destination; }
374375
''
375376
file=$out$destination
376377
mkdir -p "$(dirname "$file")"

0 commit comments

Comments
 (0)