summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-22 17:45:10 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-03-22 17:45:10 -0700
commit6c3855038a8f7c3dfd59a6d1eb698fc8e7ffb722 (patch)
tree407d3d85d536ab6bf9e9b84d677ee1a5084a5514 /pkgs
parent40aabe9d483001762bd1a28d494df1d1f871c642 (diff)
downloadnixlib-6c3855038a8f7c3dfd59a6d1eb698fc8e7ffb722.tar
nixlib-6c3855038a8f7c3dfd59a6d1eb698fc8e7ffb722.tar.gz
nixlib-6c3855038a8f7c3dfd59a6d1eb698fc8e7ffb722.tar.bz2
nixlib-6c3855038a8f7c3dfd59a6d1eb698fc8e7ffb722.tar.lz
nixlib-6c3855038a8f7c3dfd59a6d1eb698fc8e7ffb722.tar.xz
nixlib-6c3855038a8f7c3dfd59a6d1eb698fc8e7ffb722.tar.zst
nixlib-6c3855038a8f7c3dfd59a6d1eb698fc8e7ffb722.zip
nlohmann_json: 3.1.1 -> 3.1.2
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 3.1.2 with grep in /nix/store/ak7p93w4pkmjvx5fi82fg40rra5z6g44-nlohmann_json-3.1.2
- directory tree listing: https://gist.github.com/cebf8a5968a9c2ae65ec58227044fcad
Diffstat (limited to 'pkgs')
-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 d4699b1c5062..59cc9438a9f1 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.1";
+  version = "3.1.2";
 
   src = fetchFromGitHub {
     owner = "nlohmann";
     repo = "json";
     rev = "v${version}";
-    sha256 = "0s5xiyvnvxc2k0zkyb12mm5cwn61lavyxlfpknlx5f243g1xi6f6";
+    sha256 = "1mpr781fb2dfbyscrr7nil75lkxsazg4wkm749168lcf2ksrrbfi";
   };
 
   nativeBuildInputs = [ cmake ];