doit: add myself (pSub) as maintainer

Changed files
+4 -3
pkgs
development
tools
build-managers
+4 -3
pkgs/development/tools/build-managers/doit/default.nix
···
doCheck = false;
checkPhase = "py.test";
-
meta = {
+
meta = with stdenv.lib; {
homepage = http://pydoit.org/;
description = "A task management & automation tool";
-
license = stdenv.lib.licenses.mit;
+
license = licenses.mit;
longDescription = ''
doit is a modern open-source build-tool written in python
designed to be simple to use and flexible to deal with complex
···
custom work-flows where there is no out-of-the-box solution
available.
'';
-
platforms = stdenv.lib.platforms.all;
+
maintainers = with maintainers; [ pSub ];
+
platforms = platforms.all;
};
}