mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
37 lines
872 B
Nix
37 lines
872 B
Nix
{ stdenv, fetchFromGitHub, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nlohmann_json";
|
|
version = "3.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nlohmann";
|
|
repo = "json";
|
|
rev = "v${version}";
|
|
sha256 = "04rry1xzis71z5gj1ylcj8b4li5q18zxhcwaviwvi3hx0frzxl9w";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
cmakeFlags = [
|
|
"-DBuildTests=${if doCheck then "ON" else "OFF"}"
|
|
"-DJSON_MultipleHeaders=ON"
|
|
];
|
|
|
|
# A test cause the build to timeout https://github.com/nlohmann/json/issues/1816
|
|
#doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
|
doCheck = false;
|
|
|
|
postInstall = "rm -rf $out/lib64";
|
|
|
|
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;
|
|
};
|
|
}
|