Merge pull request #302727 from r-ryantm/auto-update/yyjson

yyjson: 0.8.0 -> 0.9.0
This commit is contained in:
Weijia Wang 2024-04-09 08:28:43 +02:00 committed by GitHub
commit d177c294d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,13 +6,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "yyjson"; pname = "yyjson";
version = "0.8.0"; version = "0.9.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ibireme"; owner = "ibireme";
repo = "yyjson"; repo = "yyjson";
rev = finalAttrs.version; rev = finalAttrs.version;
hash = "sha256-uAh/AUUDudQr+1+3YLkg9KxARgvKWxfDZlqo8388nFY="; hash = "sha256-iRMjiaVnsTclcdzHjlFOTmJvX3VP4omJLC8AWA/EOZk=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -25,5 +25,6 @@ stdenv.mkDerivation (finalAttrs: {
changelog = "https://github.com/ibireme/yyjson/blob/${finalAttrs.src.rev}/CHANGELOG.md"; changelog = "https://github.com/ibireme/yyjson/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ federicoschonborn ]; maintainers = with lib.maintainers; [ federicoschonborn ];
platforms = lib.platforms.all;
}; };
}) })