summary refs log tree commit diff
path: root/pkgs/development/libraries/nlohmann_json/default.nix
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-12-21 22:47:00 -0600
committerWill Dietz <w@wdtz.org>2018-12-21 22:58:17 -0600
commitfb60aedd7cd4e9bdc1f1ca411c7b59697398f846 (patch)
treeeaeefe19eb1c10fb09e6c7da9d8b26242d2f3ffa /pkgs/development/libraries/nlohmann_json/default.nix
parent12e57cbb61afeb27b90b32d4de5ea5960d7246f8 (diff)
downloadnixpkgs-fb60aedd7cd4e9bdc1f1ca411c7b59697398f846.tar
nixpkgs-fb60aedd7cd4e9bdc1f1ca411c7b59697398f846.tar.gz
nixpkgs-fb60aedd7cd4e9bdc1f1ca411c7b59697398f846.tar.bz2
nixpkgs-fb60aedd7cd4e9bdc1f1ca411c7b59697398f846.tar.lz
nixpkgs-fb60aedd7cd4e9bdc1f1ca411c7b59697398f846.tar.xz
nixpkgs-fb60aedd7cd4e9bdc1f1ca411c7b59697398f846.tar.zst
nixpkgs-fb60aedd7cd4e9bdc1f1ca411c7b59697398f846.zip
nlohmann_json: 3.4.0 -> 3.5.0
https://github.com/nlohmann/json/releases/tag/v3.5.0
Diffstat (limited to 'pkgs/development/libraries/nlohmann_json/default.nix')
-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 d57461853d3..eb737c0757d 100644
--- a/pkgs/development/libraries/nlohmann_json/default.nix
+++ b/pkgs/development/libraries/nlohmann_json/default.nix
@@ -3,13 +3,13 @@
 
 stdenv.mkDerivation rec {
   name = "nlohmann_json-${version}";
-  version = "3.4.0";
+  version = "3.5.0";
 
   src = fetchFromGitHub {
     owner = "nlohmann";
     repo = "json";
     rev = "v${version}";
-    sha256 = "1140gz5za7yvfcphdgxaq1dm4b1vxy1m8d1w0s0smv4vvdvl26ym";
+    sha256 = "1jq522d48bvfrxr4f6jnijwx2dwqfb8w9k636j4kxlg1hka27lji";
   };
 
   nativeBuildInputs = [ cmake ];