Merge pull request #242523 from majiru/rc-parallel

rc-9front: enable parallel builds
This commit is contained in:
Nick Cao 2023-07-10 09:07:35 +08:00 committed by GitHub
commit 94edb1a72d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 = ''