From 9ecb2dc58f81c60b6bfeb44354d98e44442b36a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 9 Feb 2026 17:55:48 +0100 Subject: [PATCH] fix(nix): restore install script in fileset for desktop build The install script was incorrectly removed in #12818. It is required by the desktop build as cli.rs uses include_str!("../../../../install"). Fixes the regression reported in #12818 comments. --- nix/node_modules.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/node_modules.nix b/nix/node_modules.nix index 73cc6d4428d..e918846c244 100644 --- a/nix/node_modules.nix +++ b/nix/node_modules.nix @@ -30,6 +30,7 @@ stdenvNoCC.mkDerivation { ../bun.lock ../package.json ../patches + ../install # required by desktop build (cli.rs include_str!) ] ); };