2017-06-28 22:23:34 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
|
|
|
}:
|
2016-08-04 23:34:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "nlohmann_json-${version}";
|
2018-12-22 05:47:00 +01:00
|
|
|
version = "3.5.0";
|
2016-08-04 23:34:23 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nlohmann";
|
|
|
|
repo = "json";
|
|
|
|
rev = "v${version}";
|
2018-12-22 05:47:00 +01:00
|
|
|
sha256 = "1jq522d48bvfrxr4f6jnijwx2dwqfb8w9k636j4kxlg1hka27lji";
|
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"}"
|
|
|
|
];
|
2016-09-03 00:23:46 +02:00
|
|
|
|
2018-08-08 20:57:55 +02:00
|
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
|
|
|
|
2016-08-04 23:34:23 +02: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;
|
|
|
|
};
|
|
|
|
}
|