From 638969c608340cb98815482dbc13c28a0725cd65 Mon Sep 17 00:00:00 2001 From: Padreug Date: Sat, 23 May 2026 11:08:24 +0200 Subject: [PATCH] build: add pkgs.pnpm to nativeBuildInputs (pnpmConfigHook needs it on PATH) --- webapp.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp.nix b/webapp.nix index 16278c8..66c0524 100644 --- a/webapp.nix +++ b/webapp.nix @@ -24,7 +24,7 @@ let fetcherVersion = 3; }; - nativeBuildInputs = [ pkgs.nodejs_20 pkgs.pnpmConfigHook ]; + nativeBuildInputs = [ pkgs.nodejs_20 pkgs.pnpm pkgs.pnpmConfigHook ]; # Skip Electron binary download (we're building a web app, not desktop) ELECTRON_SKIP_BINARY_DOWNLOAD = "1";