summary refs log tree commit diff
path: root/pkgs/development/libraries/nlohmann_json
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-11-28 07:00:48 -0800
committerR. RyanTM <ryantm-bot@ryantm.com>2019-11-28 07:00:48 -0800
commit1dd63ad320d943e173308258a399f31ded0d4de4 (patch)
tree97233ec47794888f6693cd2a313feeeceae912e8 /pkgs/development/libraries/nlohmann_json
parent646b279c55780fa8cfe79b2a3b1e3ab53b445be7 (diff)
downloadnixpkgs-1dd63ad320d943e173308258a399f31ded0d4de4.tar
nixpkgs-1dd63ad320d943e173308258a399f31ded0d4de4.tar.gz
nixpkgs-1dd63ad320d943e173308258a399f31ded0d4de4.tar.bz2
nixpkgs-1dd63ad320d943e173308258a399f31ded0d4de4.tar.lz
nixpkgs-1dd63ad320d943e173308258a399f31ded0d4de4.tar.xz
nixpkgs-1dd63ad320d943e173308258a399f31ded0d4de4.tar.zst
nixpkgs-1dd63ad320d943e173308258a399f31ded0d4de4.zip
nlohmann_json: 3.7.0 -> 3.7.3
Diffstat (limited to 'pkgs/development/libraries/nlohmann_json')
-rw-r--r--pkgs/development/libraries/nlohmann_json/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/nlohmann_json/default.nix b/pkgs/development/libraries/nlohmann_json/default.nix
index 72d425e8918..43a7cf15c15 100644
--- a/pkgs/development/libraries/nlohmann_json/default.nix
+++ b/pkgs/development/libraries/nlohmann_json/default.nix
@@ -3,13 +3,13 @@
 
 stdenv.mkDerivation rec {
   pname = "nlohmann_json";
-  version = "3.7.0";
+  version = "3.7.3";
 
   src = fetchFromGitHub {
     owner = "nlohmann";
     repo = "json";
     rev = "v${version}";
-    sha256 = "0v7xih4zjixxxfvkfbs7a8j9qcvpwlsv4vrkbyns3hc7b44nb8ap";
+    sha256 = "04rry1xzis71z5gj1ylcj8b4li5q18zxhcwaviwvi3hx0frzxl9w";
   };
 
   nativeBuildInputs = [ cmake ];