Skip to content

Commit 59d26e4

Browse files
committed
chore(deps): which is now required
1 parent d61c92c commit 59d26e4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

nix/quarto/default.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
, rPackages
99
, autoPatchelfHook
1010
, libgcc
11+
, which
1112
}:
1213

1314
let
@@ -54,7 +55,8 @@ stdenv.mkDerivation rec {
5455
wrapProgram $out/bin/quarto \
5556
--prefix QUARTO_ESBUILD : ${lib.getExe esbuild} \
5657
--prefix QUARTO_R : ${lib.getExe' rEnv "R"} \
57-
--prefix QUARTO_DART_SASS : ${lib.getExe dart-sass}
58+
--prefix QUARTO_DART_SASS : ${lib.getExe dart-sass} \
59+
--prefix PATH : ${lib.makeBinPath [ which ]}
5860
'';
5961

6062
installPhase = ''

0 commit comments

Comments
 (0)