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

32 lines
707 B
Nix
Raw Normal View History

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