2017-06-28 22:23:34 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
|
|
|
}:
|
2016-08-04 23:34:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-20 14:48:13 +01:00
|
|
|
pname = "nlohmann_json";
|
2019-11-28 16:00:48 +01:00
|
|
|
version = "3.7.3";
|
2016-08-04 23:34:23 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nlohmann";
|
|
|
|
repo = "json";
|
|
|
|
rev = "v${version}";
|
2019-11-28 16:00:48 +01:00
|
|
|
sha256 = "04rry1xzis71z5gj1ylcj8b4li5q18zxhcwaviwvi3hx0frzxl9w";
|
2016-08-04 23:34:23 +02:00
|
|
|
};
|
|
|
|
|
2016-09-03 00:23:46 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2016-08-04 23:34:23 +02:00
|
|
|
|
2017-02-02 11:13:04 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-07-23 21:47:09 +02:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBuildTests=${if doCheck then "ON" else "OFF"}"
|
2019-10-22 19:12:57 +02:00
|
|
|
"-DJSON_MultipleHeaders=ON"
|
2018-07-23 21:47:09 +02:00
|
|
|
];
|
2016-09-03 00:23:46 +02:00
|
|
|
|
2019-11-06 20:12:11 +01:00
|
|
|
# A test cause the build to timeout https://github.com/nlohmann/json/issues/1816
|
|
|
|
#doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
|
|
|
doCheck = false;
|
2018-08-08 20:57:55 +02:00
|
|
|
|
2019-10-22 19:12:57 +02:00
|
|
|
postInstall = "rm -rf $out/lib64";
|
|
|
|
|
2016-08-04 23:34:23 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Header only C++ library for the JSON file format";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/nlohmann/json";
|
2016-08-04 23:34:23 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|