diff --git a/pkgs/by-name/in/inflow/package.nix b/pkgs/by-name/in/inflow/package.nix index 32416963105d..6cef21f4422b 100644 --- a/pkgs/by-name/in/inflow/package.nix +++ b/pkgs/by-name/in/inflow/package.nix @@ -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; }; } diff --git a/pkgs/by-name/ip/ipaexfont/package.nix b/pkgs/by-name/ip/ipaexfont/package.nix index a4988a7156b2..9b696656d780 100644 --- a/pkgs/by-name/ip/ipaexfont/package.nix +++ b/pkgs/by-name/ip/ipaexfont/package.nix @@ -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 ]; }; } diff --git a/pkgs/by-name/of/offlineimap/package.nix b/pkgs/by-name/of/offlineimap/package.nix index 97cc447cedb4..c4dcbd124186 100644 --- a/pkgs/by-name/of/offlineimap/package.nix +++ b/pkgs/by-name/of/offlineimap/package.nix @@ -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"; }; } diff --git a/pkgs/development/python-modules/vdirsyncer/default.nix b/pkgs/development/python-modules/vdirsyncer/default.nix index 83e6581f4a2c..b93b03108767 100644 --- a/pkgs/development/python-modules/vdirsyncer/default.nix +++ b/pkgs/development/python-modules/vdirsyncer/default.nix @@ -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"; }; }