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