tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
libjson-rpc-cpp: enable parallel building
Orivej Desh
8 years ago
b5148cec
0c3a544f
+3
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libjson-rpc-cpp
default.nix
+3
-1
pkgs/development/libraries/libjson-rpc-cpp/default.nix
···
34
34
-DCMAKE_BUILD_TYPE=Release
35
35
'';
36
36
37
37
-
installPhase = ''
37
37
+
installPhase = ''
38
38
mkdir -p $out
39
39
40
40
function fixRunPath {
···
55
55
56
56
nativeBuildInputs = [ pkgconfig ];
57
57
buildInputs = [ cmake jsoncpp argtable curl libmicrohttpd doxygen catch ];
58
58
+
59
59
+
enableParallelBuilding = true;
58
60
59
61
meta = with stdenv.lib; {
60
62
description = "C++ framework for json-rpc (json remote procedure call)";