Unverified Commit e2ee1dbb authored by Stephen Huan's avatar Stephen Huan
Browse files

treewide: add stephen-huan as maintainer

parent 08f22084
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -74,12 +74,15 @@ stdenv.mkDerivation rec {
        '';
  };

  meta = with lib; {
  meta = {
    description = "Variance-optimal paragraph formatter";
    homepage = "https://github.com/stephen-huan/inflow";
    license = licenses.unlicense;
    license = lib.licenses.unlicense;
    mainProgram = "inflow";
    maintainers = with maintainers; [ fbrs ];
    platforms = platforms.all;
    maintainers = with lib.maintainers; [
      fbrs
      stephen-huan
    ];
    platforms = lib.platforms.all;
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Japanese font package with Mincho and Gothic fonts";
    longDescription = ''
      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.
    '';
    homepage = "https://moji.or.jp/ipafont/";
    license = licenses.ipa;
    maintainers = with maintainers; [ ];
    license = lib.licenses.ipa;
    maintainers = with lib.maintainers; [ stephen-huan ];
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -87,11 +87,11 @@ python3.pkgs.buildPythonApplication rec {

  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";
    homepage = "http://offlineimap.org";
    license = licenses.gpl2Plus;
    maintainers = [ ];
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ stephen-huan ];
    mainProgram = "offlineimap";
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -80,12 +80,12 @@ buildPythonPackage rec {

  passthru.tests.version = testers.testVersion { package = vdirsyncer; };

  meta = with lib; {
  meta = {
    description = "Synchronize calendars and contacts";
    homepage = "https://github.com/pimutils/vdirsyncer";
    changelog = "https://github.com/pimutils/vdirsyncer/blob/v${version}/CHANGELOG.rst";
    license = licenses.bsd3;
    maintainers = [ ];
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ stephen-huan ];
    mainProgram = "vdirsyncer";
  };
}