From 81b35cd59bc06990d7f610291f22666ac347a97a Mon Sep 17 00:00:00 2001 From: Philip Taron Date: Tue, 27 May 2025 06:13:36 -0700 Subject: [PATCH] llm: add philiptaron to maintainers --- pkgs/development/python-modules/llm/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/llm/default.nix b/pkgs/development/python-modules/llm/default.nix index 743e7c902801..c1f71fa10e16 100644 --- a/pkgs/development/python-modules/llm/default.nix +++ b/pkgs/development/python-modules/llm/default.nix @@ -202,15 +202,16 @@ let }; }; - meta = with lib; { + meta = { homepage = "https://github.com/simonw/llm"; description = "Access large language models from the command-line"; changelog = "https://github.com/simonw/llm/releases/tag/${src.tag}"; - license = licenses.asl20; + license = lib.licenses.asl20; mainProgram = "llm"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ aldoborrero mccartykim + philiptaron ]; }; };