emscripten: fix cross-compilation by using host python (#431462)

This commit is contained in:
Sandro
2025-09-30 18:18:27 +00:00
committed by GitHub
@@ -2,7 +2,6 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
python3,
nodejs,
closurecompiler,
@@ -51,10 +50,14 @@ stdenv.mkDerivation rec {
rev = version;
};
nativeBuildInputs = [ makeWrapper ];
strictDeps = true;
nativeBuildInputs = [
makeWrapper
python3
];
buildInputs = [
nodejs
python3
];
patches = [