From fbedeabf198c5e17e8779d3ae06234c91bee7de1 Mon Sep 17 00:00:00 2001 From: Michael Adler Date: Wed, 11 Jan 2023 14:00:53 +0100 Subject: [PATCH] mtdutils: enable parallel building --- pkgs/tools/filesystems/mtdutils/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/filesystems/mtdutils/default.nix b/pkgs/tools/filesystems/mtdutils/default.nix index 86ca59c8fce9..ceb0c4e175e6 100644 --- a/pkgs/tools/filesystems/mtdutils/default.nix +++ b/pkgs/tools/filesystems/mtdutils/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook pkg-config ] ++ lib.optional doCheck cmocka; buildInputs = [ acl libuuid lzo zlib zstd ]; + enableParallelBuilding = true; + configureFlags = with lib; [ (enableFeature doCheck "unit-tests") (enableFeature doCheck "tests")