depot/third_party/nixpkgs/pkgs/development/libraries/nlohmann_json/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

34 lines
835 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake
}:
stdenv.mkDerivation rec {
pname = "nlohmann_json";
version = "3.9.1";
src = fetchFromGitHub {
owner = "nlohmann";
repo = "json";
rev = "v${version}";
sha256 = "sha256-THordDPdH2qwk6lFTgeFmkl7iDuA/7YH71PTUe6vJCs=";
};
nativeBuildInputs = [ cmake ];
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 lib; {
description = "Header only C++ library for the JSON file format";
homepage = "https://github.com/nlohmann/json";
license = licenses.mit;
platforms = platforms.all;
};
}