default.nix: enable parallel build

This commit is contained in:
Michele Guerini Rocco 2021-12-15 02:31:19 +01:00
parent 5a8e64a595
commit da1ddd186e
Signed by: rnhmjoj
GPG Key ID: BFBAF4C975F76450

View File

@ -43,12 +43,14 @@ in
})
];
buildInputs = lib.optional static pkgs.glibc.static;
# fonts needed for the PDF manual
FONTCONFIG_FILE = pkgs.makeFontsConf {
fontDirectories = with pkgs; [ fira-mono libertinus ];
};
buildInputs = lib.optional static pkgs.glibc.static;
enableParallelBuilding = true;
hardeningDisable = [ "format" ];
configureFlags = [