From 59d26e46c3d96749c5217c53d2e6e5244ee0b270 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Mon, 3 Feb 2025 04:31:35 -0500 Subject: [PATCH] chore(deps): `which` is now required --- nix/quarto/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/quarto/default.nix b/nix/quarto/default.nix index 9b35e1b827fc..f541b58d03d5 100644 --- a/nix/quarto/default.nix +++ b/nix/quarto/default.nix @@ -8,6 +8,7 @@ , rPackages , autoPatchelfHook , libgcc +, which }: let @@ -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 = ''