From 1242a9d55eae3621890fb45c62398362bbfa5af1 Mon Sep 17 00:00:00 2001 From: Ryan Cao <70191398+ryanccn@users.noreply.github.com> Date: Mon, 24 Jul 2023 08:19:51 +0800 Subject: [PATCH] maintainers: add ryanccn --- maintainers/maintainer-list.nix | 6 ++++++ pkgs/development/tools/gen-license/default.nix | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 4d4af4c9f47e..6e271f24246b 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -14465,6 +14465,12 @@ githubId = 889991; name = "Ryan Artecona"; }; + ryanccn = { + email = "hello@ryanccn.dev"; + github = "ryanccn"; + githubId = 70191398; + name = "Ryan Cao"; + }; ryane = { email = "ryanesc@gmail.com"; github = "ryane"; diff --git a/pkgs/development/tools/gen-license/default.nix b/pkgs/development/tools/gen-license/default.nix index b6d744c985a2..a3495866576d 100644 --- a/pkgs/development/tools/gen-license/default.nix +++ b/pkgs/development/tools/gen-license/default.nix @@ -22,6 +22,6 @@ rustPlatform.buildRustPackage rec { description = "Create licenses for your projects right from your terminal"; homepage = "https://github.com/nexxeln/license-generator"; license = licenses.mit; - maintainers = [ ]; + maintainers = [ maintainers.ryanccn ]; }; }