2017-06-28 21:23:34 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
|
|
|
, hostPlatform
|
|
|
|
}:
|
2016-08-04 22:34:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "nlohmann_json-${version}";
|
2018-03-23 00:45:10 +00:00
|
|
|
version = "3.1.2";
|
2016-08-04 22:34:23 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nlohmann";
|
|
|
|
repo = "json";
|
|
|
|
rev = "v${version}";
|
2018-03-23 00:45:10 +00:00
|
|
|
sha256 = "1mpr781fb2dfbyscrr7nil75lkxsazg4wkm749168lcf2ksrrbfi";
|
2016-08-04 22:34:23 +01:00
|
|
|
};
|
|
|
|
|
2016-09-02 23:23:46 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2016-08-04 22:34:23 +01:00
|
|
|
|
2018-07-23 20:47:09 +01:00
|
|
|
doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
|
2016-08-04 22:34:23 +01:00
|
|
|
checkTarget = "test";
|
|
|
|
|
2017-02-02 10:13:04 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-07-23 20:47:09 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBuildTests=${if doCheck then "ON" else "OFF"}"
|
|
|
|
] ++ stdenv.lib.optionals (hostPlatform.libc == "msvcrt") [
|
|
|
|
"-DCMAKE_SYSTEM_NAME=Windows"
|
|
|
|
];
|
2016-09-02 23:23:46 +01:00
|
|
|
|
2016-08-04 22:34:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Header only C++ library for the JSON file format";
|
|
|
|
homepage = https://github.com/nlohmann/json;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|