about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-09 08:28:43 +0200
committerGitHub <noreply@github.com>2024-04-09 08:28:43 +0200
commitd177c294d848209498acfc14964d35d50f6a914f (patch)
treee6d47394dfb6cfa31ccd72f00cc12fa8e01d8b05
parenta44467432c0fbe9af6d39b21b267920b8107120d (diff)
parent9b3794e7d7f55b11bc81b5110c6d686832a24bc1 (diff)
Merge pull request #302727 from r-ryantm/auto-update/yyjson
yyjson: 0.8.0 -> 0.9.0
-rw-r--r--pkgs/development/libraries/yyjson/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/yyjson/default.nix b/pkgs/development/libraries/yyjson/default.nix
index 86a286ef2e2d8..60a937b5216d1 100644
--- a/pkgs/development/libraries/yyjson/default.nix
+++ b/pkgs/development/libraries/yyjson/default.nix
@@ -6,13 +6,13 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "yyjson";
-  version = "0.8.0";
+  version = "0.9.0";
 
   src = fetchFromGitHub {
     owner = "ibireme";
     repo = "yyjson";
     rev = finalAttrs.version;
-    hash = "sha256-uAh/AUUDudQr+1+3YLkg9KxARgvKWxfDZlqo8388nFY=";
+    hash = "sha256-iRMjiaVnsTclcdzHjlFOTmJvX3VP4omJLC8AWA/EOZk=";
   };
 
   nativeBuildInputs = [
@@ -25,5 +25,6 @@ stdenv.mkDerivation (finalAttrs: {
     changelog = "https://github.com/ibireme/yyjson/blob/${finalAttrs.src.rev}/CHANGELOG.md";
     license = lib.licenses.mit;
     maintainers = with lib.maintainers; [ federicoschonborn ];
+    platforms = lib.platforms.all;
   };
 })