libjson-rpc-cpp: enable parallel building

This commit is contained in:
Orivej Desh 2017-11-17 22:44:01 +00:00
parent 0c3a544f91
commit b5148cec8f

View File

@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
-DCMAKE_BUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release
''; '';
installPhase = '' installPhase = ''
mkdir -p $out mkdir -p $out
function fixRunPath { function fixRunPath {
@ -56,6 +56,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake jsoncpp argtable curl libmicrohttpd doxygen catch ]; buildInputs = [ cmake jsoncpp argtable curl libmicrohttpd doxygen catch ];
enableParallelBuilding = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "C++ framework for json-rpc (json remote procedure call)"; description = "C++ framework for json-rpc (json remote procedure call)";
homepage = https://github.com/cinemast/libjson-rpc-cpp; homepage = https://github.com/cinemast/libjson-rpc-cpp;