2017-06-28 21:23:34 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
|
|
|
}:
|
2016-08-04 22:34:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-20 13:48:13 +00:00
|
|
|
pname = "nlohmann_json";
|
2019-03-20 20:16:00 +00:00
|
|
|
version = "3.6.1";
|
2016-08-04 22:34:23 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nlohmann";
|
|
|
|
repo = "json";
|
|
|
|
rev = "v${version}";
|
2019-03-20 20:16:00 +00:00
|
|
|
sha256 = "1dgx3j9pb0f52dh73z8dpwdy79bra1qi5vpl66b9inq4gamf813z";
|
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
|
|
|
|
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"}"
|
|
|
|
];
|
2016-09-02 23:23:46 +01:00
|
|
|
|
2018-08-08 19:57:55 +01:00
|
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|