summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Ross <alyssa.ross@unikie.com>2022-12-02 11:48:46 +0000
committerAlyssa Ross <hi@alyssa.is>2023-01-12 12:41:32 +0000
commit6a3f9996408c970b99b8b992b11bb249d1455b62 (patch)
tree4c82de1a7e0b7ea7031cbdd2972f7c963da319b7
parentbb4df5b50e2f18e5f3c47567f6ea4e8a0b3cae3b (diff)
augeas: enable parallel buildingnixos-22.11
Tested at -j4. (cherry picked from commit 2430ebd340096dfad4277ddd0aaadb3b261e9135)
-rw-r--r--pkgs/tools/system/augeas/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/tools/system/augeas/default.nix b/pkgs/tools/system/augeas/default.nix
index d026ce05a77c..bea2edd553d4 100644
--- a/pkgs/tools/system/augeas/default.nix
+++ b/pkgs/tools/system/augeas/default.nix
@@ -11,6 +11,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ readline libxml2 ];
+ enableParallelBuilding = true;
+
meta = with lib; {
description = "Configuration editing tool";
license = licenses.lgpl21Only;