summary refs log tree commit diff
path: root/pkgs/development/libraries/nlohmann_json
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 08:10:05 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-27 08:10:05 -0800
commitf9c9068120428be18f1b2f42c7ff4c2ca88915b6 (patch)
tree5d090a6f814450b76c9e70b5328221a4d812f33f /pkgs/development/libraries/nlohmann_json
parent6a101342051182e66587249cfd8c4800b0746c82 (diff)
downloadnixpkgs-f9c9068120428be18f1b2f42c7ff4c2ca88915b6.tar
nixpkgs-f9c9068120428be18f1b2f42c7ff4c2ca88915b6.tar.gz
nixpkgs-f9c9068120428be18f1b2f42c7ff4c2ca88915b6.tar.bz2
nixpkgs-f9c9068120428be18f1b2f42c7ff4c2ca88915b6.tar.lz
nixpkgs-f9c9068120428be18f1b2f42c7ff4c2ca88915b6.tar.xz
nixpkgs-f9c9068120428be18f1b2f42c7ff4c2ca88915b6.tar.zst
nixpkgs-f9c9068120428be18f1b2f42c7ff4c2ca88915b6.zip
nlohmann_json: 2.1.0 -> 3.1.1
Semi-automatic update. These checks were performed:

- built on NixOS
- found 3.1.1 with grep in /nix/store/4pydihqzddnsfmlc2zcn6qlwi7m2p1k1-nlohmann_json-3.1.1
- found 3.1.1 in filename of file in /nix/store/4pydihqzddnsfmlc2zcn6qlwi7m2p1k1-nlohmann_json-3.1.1
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 9fb614cd071..d4699b1c506 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 = "2.1.0";
+  version = "3.1.1";
 
   src = fetchFromGitHub {
     owner = "nlohmann";
     repo = "json";
     rev = "v${version}";
-    sha256 = "116309lx77m31x4krln0g7mra900g0knk9lbkxbpxnmamkagjyl9";
+    sha256 = "0s5xiyvnvxc2k0zkyb12mm5cwn61lavyxlfpknlx5f243g1xi6f6";
   };
 
   nativeBuildInputs = [ cmake ];