summary refs log tree commit diff
path: root/pkgs/development/libraries/nlohmann_json
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-02-02 11:13:04 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2017-02-02 11:13:04 +0100
commit2a63aae2996aca338e9a8491a794a010e6608b79 (patch)
treefc14b54bc69c21572dc4d93a4ff2e31259cc0cdb /pkgs/development/libraries/nlohmann_json
parent4dae4f86faed8150a922dd9ee618d7d937b155ac (diff)
downloadnixpkgs-2a63aae2996aca338e9a8491a794a010e6608b79.tar
nixpkgs-2a63aae2996aca338e9a8491a794a010e6608b79.tar.gz
nixpkgs-2a63aae2996aca338e9a8491a794a010e6608b79.tar.bz2
nixpkgs-2a63aae2996aca338e9a8491a794a010e6608b79.tar.lz
nixpkgs-2a63aae2996aca338e9a8491a794a010e6608b79.tar.xz
nixpkgs-2a63aae2996aca338e9a8491a794a010e6608b79.tar.zst
nixpkgs-2a63aae2996aca338e9a8491a794a010e6608b79.zip
nlohmann_json: 2.0.7 -> 2.1.0
Diffstat (limited to 'pkgs/development/libraries/nlohmann_json')
-rw-r--r--pkgs/development/libraries/nlohmann_json/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/nlohmann_json/default.nix b/pkgs/development/libraries/nlohmann_json/default.nix
index 15ddbdaedef..a5a808c1f61 100644
--- a/pkgs/development/libraries/nlohmann_json/default.nix
+++ b/pkgs/development/libraries/nlohmann_json/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "nlohmann_json-${version}";
-  version = "2.0.7";
+  version = "2.1.0";
 
   src = fetchFromGitHub {
     owner = "nlohmann";
     repo = "json";
     rev = "v${version}";
-    sha256 = "03jklvlcsms09p79qz9piqrdy2vhn4rkwidwfgq6cpxm6anqyqjh";
+    sha256 = "116309lx77m31x4krln0g7mra900g0knk9lbkxbpxnmamkagjyl9";
   };
 
   nativeBuildInputs = [ cmake ];
@@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
   doCheck = true;
   checkTarget = "test";
 
+  enableParallelBuilding = true;
+
   crossAttrs = {
     cmakeFlags = "-DBuildTests=OFF";
     doCheck = false;