summary refs log tree commit diff
path: root/pkgs/development/libraries/nlohmann_json
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-08-24 09:27:29 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-08-24 18:27:29 +0200
commit702fa7a7176d41c19b559f9b6fc263b3a121174d (patch)
treed60489cc849b9bf4fe53db5e312646d7f6b2f307 /pkgs/development/libraries/nlohmann_json
parent1f4eb992c4745eab63dbe9d76d60d4f887e90989 (diff)
downloadnixpkgs-702fa7a7176d41c19b559f9b6fc263b3a121174d.tar
nixpkgs-702fa7a7176d41c19b559f9b6fc263b3a121174d.tar.gz
nixpkgs-702fa7a7176d41c19b559f9b6fc263b3a121174d.tar.bz2
nixpkgs-702fa7a7176d41c19b559f9b6fc263b3a121174d.tar.lz
nixpkgs-702fa7a7176d41c19b559f9b6fc263b3a121174d.tar.xz
nixpkgs-702fa7a7176d41c19b559f9b6fc263b3a121174d.tar.zst
nixpkgs-702fa7a7176d41c19b559f9b6fc263b3a121174d.zip
nlohmann_json: 3.1.2 -> 3.2.0 (#45559)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/nlohmann_json/versions.
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 8db3a3d92ff..0221722e487 100644
--- a/pkgs/development/libraries/nlohmann_json/default.nix
+++ b/pkgs/development/libraries/nlohmann_json/default.nix
@@ -4,13 +4,13 @@
 
 stdenv.mkDerivation rec {
   name = "nlohmann_json-${version}";
-  version = "3.1.2";
+  version = "3.2.0";
 
   src = fetchFromGitHub {
     owner = "nlohmann";
     repo = "json";
     rev = "v${version}";
-    sha256 = "1mpr781fb2dfbyscrr7nil75lkxsazg4wkm749168lcf2ksrrbfi";
+    sha256 = "0585r6ai9x1bhspffn5w5620wxfl1q1gj476brsnaf7wwnr60hwk";
   };
 
   nativeBuildInputs = [ cmake ];