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>2019-03-20 15:16:00 -0500
committerWill Dietz <w@wdtz.org>2019-03-20 15:16:38 -0500
commit6bfe325ac68346fc1e91957a72310fa929884d3a (patch)
treec0c469a959391da64b6b74c44ba4b0e9d427c19b /pkgs/development/libraries/nlohmann_json/default.nix
parent5b30801441ed4294775b071c44d0889d6fe1d672 (diff)
downloadnixpkgs-6bfe325ac68346fc1e91957a72310fa929884d3a.tar
nixpkgs-6bfe325ac68346fc1e91957a72310fa929884d3a.tar.gz
nixpkgs-6bfe325ac68346fc1e91957a72310fa929884d3a.tar.bz2
nixpkgs-6bfe325ac68346fc1e91957a72310fa929884d3a.tar.lz
nixpkgs-6bfe325ac68346fc1e91957a72310fa929884d3a.tar.xz
nixpkgs-6bfe325ac68346fc1e91957a72310fa929884d3a.tar.zst
nixpkgs-6bfe325ac68346fc1e91957a72310fa929884d3a.zip
nlohmann_json: 3.6.0 -> 3.6.1
https://github.com/nlohmann/json/releases/tag/v3.6.1
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 edc766f65e4..129cc7ed84c 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.6.0";
+  version = "3.6.1";
 
   src = fetchFromGitHub {
     owner = "nlohmann";
     repo = "json";
     rev = "v${version}";
-    sha256 = "11dfv31prfiaxxdv8ypnya4a953hqq2k94nbxl0v4qlfbsyipil3";
+    sha256 = "1dgx3j9pb0f52dh73z8dpwdy79bra1qi5vpl66b9inq4gamf813z";
   };
 
   nativeBuildInputs = [ cmake ];