treewide: add stephen-huan as maintainer

This commit is contained in:
Stephen Huan 2025-07-09 00:59:19 -04:00
parent 08f22084e6
commit e2ee1dbbbf
No known key found for this signature in database
GPG Key ID: 0FBC2E3BA99DD60E
4 changed files with 16 additions and 13 deletions

View File

@ -74,12 +74,15 @@ stdenv.mkDerivation rec {
''; '';
}; };
meta = with lib; { meta = {
description = "Variance-optimal paragraph formatter"; description = "Variance-optimal paragraph formatter";
homepage = "https://github.com/stephen-huan/inflow"; homepage = "https://github.com/stephen-huan/inflow";
license = licenses.unlicense; license = lib.licenses.unlicense;
mainProgram = "inflow"; mainProgram = "inflow";
maintainers = with maintainers; [ fbrs ]; maintainers = with lib.maintainers; [
platforms = platforms.all; fbrs
stephen-huan
];
platforms = lib.platforms.all;
}; };
} }

View File

@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation {
runHook postInstall runHook postInstall
''; '';
meta = with lib; { meta = {
description = "Japanese font package with Mincho and Gothic fonts"; description = "Japanese font package with Mincho and Gothic fonts";
longDescription = '' longDescription = ''
IPAex font is a Japanese font developed by the Information-technology IPAex font is a Japanese font developed by the Information-technology
@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation {
This is the successor to the IPA fonts. This is the successor to the IPA fonts.
''; '';
homepage = "https://moji.or.jp/ipafont/"; homepage = "https://moji.or.jp/ipafont/";
license = licenses.ipa; license = lib.licenses.ipa;
maintainers = with maintainers; [ ]; maintainers = with lib.maintainers; [ stephen-huan ];
}; };
} }

View File

@ -87,11 +87,11 @@ python3.pkgs.buildPythonApplication rec {
passthru.tests.version = testers.testVersion { package = offlineimap; }; passthru.tests.version = testers.testVersion { package = offlineimap; };
meta = with lib; { meta = {
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers"; description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
homepage = "http://offlineimap.org"; homepage = "http://offlineimap.org";
license = licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
maintainers = [ ]; maintainers = with lib.maintainers; [ stephen-huan ];
mainProgram = "offlineimap"; mainProgram = "offlineimap";
}; };
} }

View File

@ -80,12 +80,12 @@ buildPythonPackage rec {
passthru.tests.version = testers.testVersion { package = vdirsyncer; }; passthru.tests.version = testers.testVersion { package = vdirsyncer; };
meta = with lib; { meta = {
description = "Synchronize calendars and contacts"; description = "Synchronize calendars and contacts";
homepage = "https://github.com/pimutils/vdirsyncer"; homepage = "https://github.com/pimutils/vdirsyncer";
changelog = "https://github.com/pimutils/vdirsyncer/blob/v${version}/CHANGELOG.rst"; changelog = "https://github.com/pimutils/vdirsyncer/blob/v${version}/CHANGELOG.rst";
license = licenses.bsd3; license = lib.licenses.bsd3;
maintainers = [ ]; maintainers = with lib.maintainers; [ stephen-huan ];
mainProgram = "vdirsyncer"; mainProgram = "vdirsyncer";
}; };
} }