rc-9front: enable parallel builds
This commit is contained in:
parent
c3e258d519
commit
727c172591
1 changed files with 3 additions and 3 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue