Skip to content

Commit

Permalink
chore(deps): which is now required
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Feb 3, 2025
1 parent d61c92c commit 59d26e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nix/quarto/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
, rPackages
, autoPatchelfHook
, libgcc
, which
}:

let
Expand Down Expand Up @@ -54,7 +55,8 @@ stdenv.mkDerivation rec {
wrapProgram $out/bin/quarto \
--prefix QUARTO_ESBUILD : ${lib.getExe esbuild} \
--prefix QUARTO_R : ${lib.getExe' rEnv "R"} \
--prefix QUARTO_DART_SASS : ${lib.getExe dart-sass}
--prefix QUARTO_DART_SASS : ${lib.getExe dart-sass} \
--prefix PATH : ${lib.makeBinPath [ which ]}
'';

installPhase = ''
Expand Down

0 comments on commit 59d26e4

Please sign in to comment.