Merge pull request #168947 from Artturin/parallels1

CoinMP: enableParallelBuilding
This commit is contained in:
Artturi 2022-04-17 00:08:03 +03:00 committed by GitHub
commit a88758c4e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 8 deletions

View file

@ -1,7 +1,6 @@
{ lib
, stdenv
, autoconf
, automake
, autoreconfHook
, c-ares
, cryptopp
, curl
@ -14,7 +13,6 @@
, libmediainfo
, libraw
, libsodium
, libtool
, libuv
, libzen
, pcre-cpp
@ -35,7 +33,8 @@ stdenv.mkDerivation rec {
fetchSubmodules = true;
};
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
enableParallelBuilding = true;
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [
c-ares
@ -54,10 +53,6 @@ stdenv.mkDerivation rec {
sqlite
];
preConfigure = ''
./autogen.sh
'';
configureFlags = [
"--disable-curl-checks"
"--disable-examples"

View file

@ -9,6 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "13d3j1sdcjzpijp4qks3n0zibk649ac3hhv88hkk8ffxrc6gnn9l";
};
enableParallelBuilding = true;
hardeningDisable = [ "format" ];
meta = with lib; {