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:
@@ -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; };
|
||||
|
||||
Reference in New Issue
Block a user