treewide: add stephen-huan as maintainer

+16 -13
+7 -4
pkgs/by-name/in/inflow/package.nix
··· 74 ''; 75 }; 76 77 - meta = with lib; { 78 description = "Variance-optimal paragraph formatter"; 79 homepage = "https://github.com/stephen-huan/inflow"; 80 - license = licenses.unlicense; 81 mainProgram = "inflow"; 82 - maintainers = with maintainers; [ fbrs ]; 83 - platforms = platforms.all; 84 }; 85 }
··· 74 ''; 75 }; 76 77 + meta = { 78 description = "Variance-optimal paragraph formatter"; 79 homepage = "https://github.com/stephen-huan/inflow"; 80 + license = lib.licenses.unlicense; 81 mainProgram = "inflow"; 82 + maintainers = with lib.maintainers; [ 83 + fbrs 84 + stephen-huan 85 + ]; 86 + platforms = lib.platforms.all; 87 }; 88 }
+3 -3
pkgs/by-name/ip/ipaexfont/package.nix
··· 21 runHook postInstall 22 ''; 23 24 - meta = with lib; { 25 description = "Japanese font package with Mincho and Gothic fonts"; 26 longDescription = '' 27 IPAex font is a Japanese font developed by the Information-technology ··· 31 This is the successor to the IPA fonts. 32 ''; 33 homepage = "https://moji.or.jp/ipafont/"; 34 - license = licenses.ipa; 35 - maintainers = with maintainers; [ ]; 36 }; 37 }
··· 21 runHook postInstall 22 ''; 23 24 + meta = { 25 description = "Japanese font package with Mincho and Gothic fonts"; 26 longDescription = '' 27 IPAex font is a Japanese font developed by the Information-technology ··· 31 This is the successor to the IPA fonts. 32 ''; 33 homepage = "https://moji.or.jp/ipafont/"; 34 + license = lib.licenses.ipa; 35 + maintainers = with lib.maintainers; [ stephen-huan ]; 36 }; 37 }
+3 -3
pkgs/by-name/of/offlineimap/package.nix
··· 87 88 passthru.tests.version = testers.testVersion { package = offlineimap; }; 89 90 - meta = with lib; { 91 description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers"; 92 homepage = "http://offlineimap.org"; 93 - license = licenses.gpl2Plus; 94 - maintainers = [ ]; 95 mainProgram = "offlineimap"; 96 }; 97 }
··· 87 88 passthru.tests.version = testers.testVersion { package = offlineimap; }; 89 90 + meta = { 91 description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers"; 92 homepage = "http://offlineimap.org"; 93 + license = lib.licenses.gpl2Plus; 94 + maintainers = with lib.maintainers; [ stephen-huan ]; 95 mainProgram = "offlineimap"; 96 }; 97 }
+3 -3
pkgs/development/python-modules/vdirsyncer/default.nix
··· 80 81 passthru.tests.version = testers.testVersion { package = vdirsyncer; }; 82 83 - meta = with lib; { 84 description = "Synchronize calendars and contacts"; 85 homepage = "https://github.com/pimutils/vdirsyncer"; 86 changelog = "https://github.com/pimutils/vdirsyncer/blob/v${version}/CHANGELOG.rst"; 87 - license = licenses.bsd3; 88 - maintainers = [ ]; 89 mainProgram = "vdirsyncer"; 90 }; 91 }
··· 80 81 passthru.tests.version = testers.testVersion { package = vdirsyncer; }; 82 83 + meta = { 84 description = "Synchronize calendars and contacts"; 85 homepage = "https://github.com/pimutils/vdirsyncer"; 86 changelog = "https://github.com/pimutils/vdirsyncer/blob/v${version}/CHANGELOG.rst"; 87 + license = lib.licenses.bsd3; 88 + maintainers = with lib.maintainers; [ stephen-huan ]; 89 mainProgram = "vdirsyncer"; 90 }; 91 }