Unverified Commit 82a2c5e8 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

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

parents 862cbde7 4ccc7c31
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -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 = [