summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorShamrock Lee <44064051+ShamrockLee@users.noreply.github.com>2021-09-08 02:35:22 +0800
committerShamrock Lee <44064051+ShamrockLee@users.noreply.github.com>2021-09-08 02:35:22 +0800
commitd9f78e95bad026c5232f534fdb236b46c3ea8b1a (patch)
tree491c2a8427fbdf144db474b73c7a1ccb5a568f5d /pkgs/development
parente16c267e4899b2d87655f0c45ec96235bfe6a258 (diff)
downloadnixpkgs-d9f78e95bad026c5232f534fdb236b46c3ea8b1a.tar
nixpkgs-d9f78e95bad026c5232f534fdb236b46c3ea8b1a.tar.gz
nixpkgs-d9f78e95bad026c5232f534fdb236b46c3ea8b1a.tar.bz2
nixpkgs-d9f78e95bad026c5232f534fdb236b46c3ea8b1a.tar.lz
nixpkgs-d9f78e95bad026c5232f534fdb236b46c3ea8b1a.tar.xz
nixpkgs-d9f78e95bad026c5232f534fdb236b46c3ea8b1a.tar.zst
nixpkgs-d9f78e95bad026c5232f534fdb236b46c3ea8b1a.zip
nlohmann_json: 3.9.1 -> 3.10.2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/nlohmann_json/default.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/development/libraries/nlohmann_json/default.nix b/pkgs/development/libraries/nlohmann_json/default.nix
index 41a967a5b70..2854074ef14 100644
--- a/pkgs/development/libraries/nlohmann_json/default.nix
+++ b/pkgs/development/libraries/nlohmann_json/default.nix
@@ -3,23 +3,15 @@
 
 stdenv.mkDerivation rec {
   pname = "nlohmann_json";
-  version = "3.9.1";
+  version = "3.10.2";
 
   src = fetchFromGitHub {
     owner = "nlohmann";
     repo = "json";
     rev = "v${version}";
-    sha256 = "sha256-THordDPdH2qwk6lFTgeFmkl7iDuA/7YH71PTUe6vJCs=";
+    sha256 = "/OFNfukrIyfJmD0ko174aud9T6ZOesHANJjyfk4q/Vs=";
   };
 
-  patches = [
-    # https://github.com/nlohmann/json/pull/2690
-    (fetchpatch {
-      url = "https://github.com/nlohmann/json/commit/53a9850eebb88c6ff95f6042d08d5c0cc9d18097.patch";
-      sha256 = "k+Og00nXNg5IsFQY5fWD3xVQQXUFFTie44UXole0S1M=";
-    })
-  ];
-
   nativeBuildInputs = [ cmake ];
 
   cmakeFlags = [