nlohmann_json: 2.0.7 -> 2.1.0

This commit is contained in:
Franz Pletz 2017-02-02 11:13:04 +01:00
parent 4dae4f86fa
commit 2a63aae299
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -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;