2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake
|
2017-06-28 21:23:34 +01:00
|
|
|
}:
|
2016-08-04 22:34:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-20 13:48:13 +00:00
|
|
|
pname = "nlohmann_json";
|
2020-09-05 22:57:33 +01:00
|
|
|
version = "3.9.1";
|
2016-08-04 22:34:23 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nlohmann";
|
|
|
|
repo = "json";
|
|
|
|
rev = "v${version}";
|
2020-09-05 22:57:33 +01:00
|
|
|
sha256 = "sha256-THordDPdH2qwk6lFTgeFmkl7iDuA/7YH71PTUe6vJCs=";
|
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
|
|
|
cmakeFlags = [
|
|
|
|
"-DBuildTests=${if doCheck then "ON" else "OFF"}"
|
2019-10-22 18:12:57 +01:00
|
|
|
"-DJSON_MultipleHeaders=ON"
|
2018-07-23 20:47:09 +01:00
|
|
|
];
|
2016-09-02 23:23:46 +01:00
|
|
|
|
2019-11-06 19:12:11 +00: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 19:57:55 +01:00
|
|
|
|
2019-10-22 18:12:57 +01:00
|
|
|
postInstall = "rm -rf $out/lib64";
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-08-04 22:34:23 +01:00
|
|
|
description = "Header only C++ library for the JSON file format";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/nlohmann/json";
|
2016-08-04 22:34:23 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|