From 339719b0b4e4f655148f860b7510982b5097cc83 Mon Sep 17 00:00:00 2001 From: Patryk Wychowaniec Date: Fri, 28 Nov 2025 17:59:51 +0100 Subject: [PATCH] simavr: add Patryk27 as maintainer --- pkgs/development/tools/simavr/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/simavr/default.nix b/pkgs/development/tools/simavr/default.nix index 19a993f07896..b6488baca834 100644 --- a/pkgs/development/tools/simavr/default.nix +++ b/pkgs/development/tools/simavr/default.nix @@ -21,6 +21,7 @@ let avrSuffixSalt = avrgcc.suffixSalt; }; } ./setup-hook-darwin.sh; + in stdenv.mkDerivation rec { pname = "simavr"; @@ -68,7 +69,10 @@ stdenv.mkDerivation rec { homepage = "https://github.com/buserror/simavr"; license = licenses.gpl3; platforms = platforms.unix; - maintainers = with maintainers; [ goodrone ]; - }; + maintainers = with maintainers; [ + goodrone + patryk27 + ]; + }; }