Skip to content

Commit 55ce288

Browse files
committed
mlterm: small modernizations
1 parent 981e00e commit 55ce288

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pkgs/applications/terminal-emulators/mlterm/default.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ stdenv.mkDerivation (finalAttrs: {
106106
src = fetchFromGitHub {
107107
owner = "arakiken";
108108
repo = "mlterm";
109-
rev = finalAttrs.version;
109+
tag = finalAttrs.version;
110110
sha256 = "sha256-YogapVTmW4HAyVgvhR4ZvW4Q6v0kGiW11CCxN6SpPCY=";
111111
};
112112

@@ -240,16 +240,16 @@ stdenv.mkDerivation (finalAttrs: {
240240
;
241241
};
242242

243-
meta = with lib; {
243+
meta = {
244244
description = "Multi Lingual TERMinal emulator";
245245
homepage = "https://mlterm.sourceforge.net/";
246-
license = licenses.bsd3;
247-
maintainers = with maintainers; [
246+
license = lib.licenses.bsd3;
247+
maintainers = with lib.maintainers; [
248248
ramkromberg
249249
atemu
250250
doronbehar
251251
];
252-
platforms = platforms.all;
252+
platforms = lib.platforms.all;
253253
mainProgram = desktopBinary;
254254
};
255255
})

0 commit comments

Comments
 (0)