From cd3095f49da398b51088ea5d84652e334802b077 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Fri, 26 Aug 2022 08:17:53 +0200 Subject: [PATCH] Add myself to maintainers list --- pkgs/development/libraries/flatcc/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/flatcc/default.nix b/pkgs/development/libraries/flatcc/default.nix index 36c42f91a3be..4f7fc14ee7b5 100644 --- a/pkgs/development/libraries/flatcc/default.nix +++ b/pkgs/development/libraries/flatcc/default.nix @@ -26,9 +26,10 @@ stdenv.mkDerivation rec { "-Wno-error=stringop-overflow" ]; - meta = { + meta = with lib; { description = "FlatBuffers Compiler and Library in C for C "; homepage = "https://github.com/dvidelabs/flatcc"; - license = [ lib.licenses.asl20 ]; + license = [ licenses.asl20 ]; + maintainers = with maintainers; [ onny ]; }; }