From d4fbff9d649a45ae847ff4016cae62d4a21c5d3a Mon Sep 17 00:00:00 2001 From: Tristan Gosselin-Hane Date: Mon, 15 Nov 2021 01:59:06 -0500 Subject: [PATCH] pngcheck: take ownership --- pkgs/tools/graphics/pngcheck/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/graphics/pngcheck/default.nix b/pkgs/tools/graphics/pngcheck/default.nix index 1d4379b7f8f2..a4680dff6f64 100644 --- a/pkgs/tools/graphics/pngcheck/default.nix +++ b/pkgs/tools/graphics/pngcheck/default.nix @@ -30,5 +30,6 @@ stdenv.mkDerivation rec { description = "Verifies the integrity of PNG, JNG and MNG files"; license = licenses.free; platforms = with platforms; [ unix ]; + maintainers = with maintainers; [ starcraft66 ]; }; }