micropython: use Nix make infra and build in parallel

This commit is contained in:
Thomas Watson
2024-08-19 14:55:51 -05:00
parent 02c887764c
commit 0d48fd069d
@@ -23,12 +23,9 @@ stdenv.mkDerivation rec {
buildInputs = [ libffi readline ];
buildPhase = ''
runHook preBuild
make -C mpy-cross
make -C ports/unix
runHook postBuild
'';
makeFlags = [ "-C" "ports/unix" ]; # also builds mpy-cross
enableParallelBuilding = true;
doCheck = true;