rc-9front: enable parallel builds

This commit is contained in:
Jacob Moody 2023-07-09 14:05:04 -05:00
parent c3e258d519
commit 727c172591

View File

@ -1,12 +1,11 @@
{ { lib
lib
, stdenv , stdenv
, fetchgit , fetchgit
, byacc , byacc
, installShellFiles , installShellFiles
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation {
pname = "rc-9front"; pname = "rc-9front";
version = "unstable-2022-11-01"; version = "unstable-2022-11-01";
@ -18,6 +17,7 @@ stdenv.mkDerivation rec {
strictDeps = true; strictDeps = true;
nativeBuildInputs = [ byacc installShellFiles ]; nativeBuildInputs = [ byacc installShellFiles ];
enableParallelBuilding = true;
patches = [ ./path.patch ]; patches = [ ./path.patch ];
buildPhase = '' buildPhase = ''