From 8d76ef7355b5fd9efc3a55e68aae635ffcfd8a59 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 4 May 2021 12:14:59 +0000 Subject: [PATCH] strace: add myself as maintainer I've been working on strace a bit recently, so I might have some useful knowledge if we're ever having problems with it. --- pkgs/development/tools/misc/strace/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix index 7ce0971c09d..756f1b947ed 100644 --- a/pkgs/development/tools/misc/strace/default.nix +++ b/pkgs/development/tools/misc/strace/default.nix @@ -27,6 +27,6 @@ stdenv.mkDerivation rec { description = "A system call tracer for Linux"; license = with licenses; [ lgpl21Plus gpl2Plus ]; # gpl2Plus is for the test suite platforms = platforms.linux; - maintainers = with maintainers; [ globin ma27 ]; + maintainers = with maintainers; [ globin ma27 qyliss ]; }; }