mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
rc-9front: enable parallel builds
This commit is contained in:
parent
c3e258d519
commit
727c172591
@ -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 New Issue
Block a user