nlohmann_json: 3.3.0 -> 3.4.0

https://github.com/nlohmann/json/releases/tag/v3.4.0
This commit is contained in:
Will Dietz 2018-11-01 10:38:38 -05:00
parent 4878526889
commit a06fde5e24

View File

@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "nlohmann_json-${version}";
version = "3.3.0";
version = "3.4.0";
src = fetchFromGitHub {
owner = "nlohmann";
repo = "json";
rev = "v${version}";
sha256 = "1plg9l1avnjsg6khrd88yj9cbzbbkwzpc5synmicqndb35wndn5h";
sha256 = "1140gz5za7yvfcphdgxaq1dm4b1vxy1m8d1w0s0smv4vvdvl26ym";
};
nativeBuildInputs = [ cmake ];