Commit 4ccc7c31 authored by Aleksey Sidorov's avatar Aleksey Sidorov
Browse files

emscripten: fix cross-compilation by using host python

parent 7398c601
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 = [