From 5b30801441ed4294775b071c44d0889d6fe1d672 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Wed, 20 Mar 2019 08:48:13 -0500 Subject: [PATCH] nlohmann_json: 3.5.0 -> 3.6.0 https://github.com/nlohmann/json/releases/tag/v3.6.0 --- pkgs/development/libraries/nlohmann_json/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/nlohmann_json/default.nix b/pkgs/development/libraries/nlohmann_json/default.nix index eb737c0757d..edc766f65e4 100644 --- a/pkgs/development/libraries/nlohmann_json/default.nix +++ b/pkgs/development/libraries/nlohmann_json/default.nix @@ -2,14 +2,14 @@ }: stdenv.mkDerivation rec { - name = "nlohmann_json-${version}"; - version = "3.5.0"; + pname = "nlohmann_json"; + version = "3.6.0"; src = fetchFromGitHub { owner = "nlohmann"; repo = "json"; rev = "v${version}"; - sha256 = "1jq522d48bvfrxr4f6jnijwx2dwqfb8w9k636j4kxlg1hka27lji"; + sha256 = "11dfv31prfiaxxdv8ypnya4a953hqq2k94nbxl0v4qlfbsyipil3"; }; nativeBuildInputs = [ cmake ];