aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libjson-rpc-cpp
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-17 22:44:01 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-17 22:44:01 +0000
commitb5148cec8f18a1d36d3882d8dbed7e2a09a4db31 (patch)
tree5d4138916ee43a459d3a909514587838abb16adb /pkgs/development/libraries/libjson-rpc-cpp
parent0c3a544f918dd9f154cbdee81531fc428142f8b2 (diff)
libjson-rpc-cpp: enable parallel building
Diffstat (limited to 'pkgs/development/libraries/libjson-rpc-cpp')
-rw-r--r--pkgs/development/libraries/libjson-rpc-cpp/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libjson-rpc-cpp/default.nix b/pkgs/development/libraries/libjson-rpc-cpp/default.nix
index 7c0bc358ea9c..87cae2246852 100644
--- a/pkgs/development/libraries/libjson-rpc-cpp/default.nix
+++ b/pkgs/development/libraries/libjson-rpc-cpp/default.nix
@@ -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;