3
0
Fork 0
forked from mirrors/nixpkgs

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