nixpkgs/pkgs/development/libraries/nlohmann_json/default.nix

32 lines
697 B
Nix
Raw Normal View History

2017-06-28 20:23:34 +00:00
{ stdenv, fetchFromGitHub, cmake
}:
stdenv.mkDerivation rec {
pname = "nlohmann_json";
version = "3.6.1";
src = fetchFromGitHub {
owner = "nlohmann";
repo = "json";
rev = "v${version}";
sha256 = "1dgx3j9pb0f52dh73z8dpwdy79bra1qi5vpl66b9inq4gamf813z";
};
nativeBuildInputs = [ cmake ];
2017-02-02 10:13:04 +00:00
enableParallelBuilding = true;
2018-07-23 19:47:09 +00:00
cmakeFlags = [
"-DBuildTests=${if doCheck then "ON" else "OFF"}"
];
2018-08-08 18:57:55 +00:00
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
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;
};
}