about summary refs log tree commit diff
path: root/pkgs/shells/rc-9front
diff options
context:
space:
mode:
authorJacob Moody <moody@posixcafe.org>2023-07-09 14:05:04 -0500
committerJacob Moody <moody@posixcafe.org>2023-07-09 14:23:07 -0500
commit727c172591002f53625c0b54d4eda6a0a56b1654 (patch)
tree37169d4f9501dcbb6bcad9b5f8d3cf8ab978426c /pkgs/shells/rc-9front
parentc3e258d51989cf1c055be128ef2279d3ceca6022 (diff)
rc-9front: enable parallel builds
Diffstat (limited to 'pkgs/shells/rc-9front')
-rw-r--r--pkgs/shells/rc-9front/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/rc-9front/default.nix b/pkgs/shells/rc-9front/default.nix
index 9779e08885b84..e68674dfb3d01 100644
--- a/pkgs/shells/rc-9front/default.nix
+++ b/pkgs/shells/rc-9front/default.nix
@@ -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 = ''