signal-desktop: fix cross compilation

`nativeBuildInputs = [ (pnpm_10.override { inherit nodejs; }) ]`
uses a `nodejs` built for the host platform, but a `pnpm` built for the
build platform. that causes exec errors, but it seems we don't actually
need `pnpm` to be using the same nodejs version that signal-desktop
itself is built against, so just drop the override.
This commit is contained in:
Colin
2025-12-20 06:09:24 +00:00
parent 465d2bf38a
commit 760eb704d9
+1 -1
View File
@@ -24,7 +24,7 @@
}:
let
nodejs = nodejs_22;
pnpm = pnpm_10.override { inherit nodejs; };
pnpm = pnpm_10;
electron = electron_39;
libsignal-node = callPackage ./libsignal-node.nix { inherit nodejs; };