summary refs log tree commit diff
path: root/pkgs/development/libraries/nlohmann_json/default.nix
diff options
context:
space:
mode:
authorShamrock Lee <44064051+ShamrockLee@users.noreply.github.com>2021-09-08 16:47:38 +0800
committerShamrock Lee <44064051+ShamrockLee@users.noreply.github.com>2021-09-12 19:35:44 +0800
commit18bd22822c1054b74d165597ee504cece999cec8 (patch)
tree65e569c0a340ffd02ca6f6593007b4ae913a4393 /pkgs/development/libraries/nlohmann_json/default.nix
parentd9f78e95bad026c5232f534fdb236b46c3ea8b1a (diff)
downloadnixpkgs-18bd22822c1054b74d165597ee504cece999cec8.tar
nixpkgs-18bd22822c1054b74d165597ee504cece999cec8.tar.gz
nixpkgs-18bd22822c1054b74d165597ee504cece999cec8.tar.bz2
nixpkgs-18bd22822c1054b74d165597ee504cece999cec8.tar.lz
nixpkgs-18bd22822c1054b74d165597ee504cece999cec8.tar.xz
nixpkgs-18bd22822c1054b74d165597ee504cece999cec8.tar.zst
nixpkgs-18bd22822c1054b74d165597ee504cece999cec8.zip
nlohmann_json: update meta information
Update meta.description and meta.homepage to match the GitHub About.
Add meta.changelog
Diffstat (limited to 'pkgs/development/libraries/nlohmann_json/default.nix')
-rw-r--r--pkgs/development/libraries/nlohmann_json/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/nlohmann_json/default.nix b/pkgs/development/libraries/nlohmann_json/default.nix
index 2854074ef14..e152c4fa20a 100644
--- a/pkgs/development/libraries/nlohmann_json/default.nix
+++ b/pkgs/development/libraries/nlohmann_json/default.nix
@@ -26,8 +26,9 @@ stdenv.mkDerivation rec {
   postInstall = "rm -rf $out/lib64";
 
   meta = with lib; {
-    description = "Header only C++ library for the JSON file format";
-    homepage = "https://github.com/nlohmann/json";
+    description = "JSON for Modern C++";
+    homepage = "https://json.nlohmann.me";
+    changelog = "https://github.com/nlohmann/json/blob/develop/ChangeLog.md";
     license = licenses.mit;
     platforms = platforms.all;
   };