Skip to content

Commit 80cb93b

Browse files
author
jared
committed
Added testTools for flake-typescript.nix
1 parent 2278e9d commit 80cb93b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

extras/flake-typescript.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ pkgs:
3737
, # `devShellTools` are extra derivations to append to the `buildInputs` for
3838
# the shell (see the variable `shell`)
3939
devShellTools ? [ ]
40+
, # `testTools` are extra derivations to append to the `buildInputs` for
41+
# the tests (see the variable `test`)
42+
testTools ? [ ]
4043
, ...
4144
}:
4245
let
@@ -188,6 +191,7 @@ let
188191
rm -rf $out
189192
touch $out
190193
'';
194+
buildInputs = node2nixDevelopAttrs.package.buildInputs ++ testTools;
191195
};
192196

193197
in

0 commit comments

Comments
 (0)