Skip to content

Commit bd85f31

Browse files
authored
mlterm: 3.9.3 -> 3.9.4 (NixOS#394550)
2 parents 0a816e1 + 55ce288 commit bd85f31

File tree

1 file changed

+7
-27
lines changed

1 file changed

+7
-27
lines changed

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

Lines changed: 7 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
stdenv,
33
lib,
44
fetchFromGitHub,
5-
fetchpatch,
65
pkg-config,
76
autoconf,
87
makeDesktopItem,
@@ -102,34 +101,15 @@ let
102101
in
103102
stdenv.mkDerivation (finalAttrs: {
104103
pname = "mlterm";
105-
version = "3.9.3";
104+
version = "3.9.4";
106105

107106
src = fetchFromGitHub {
108107
owner = "arakiken";
109108
repo = "mlterm";
110-
rev = finalAttrs.version;
111-
sha256 = "sha256-gfs5cdwUUwSBWwJJSaxrQGWJvLkI27RMlk5QvDALEDg=";
109+
tag = finalAttrs.version;
110+
sha256 = "sha256-YogapVTmW4HAyVgvhR4ZvW4Q6v0kGiW11CCxN6SpPCY=";
112111
};
113112

114-
patches = [
115-
(fetchpatch {
116-
name = "mlterm-configure-implicit-function-declaration.patch";
117-
url = "https://github.com/arakiken/mlterm/commit/1a9ee97e4574c5892bf12090b812b0538dcdf8f2.patch";
118-
hash = "sha256-Kk+x5LAq+beZWE8yj5WfdS82ConLSgxNquzQd5mvOA4=";
119-
})
120-
121-
(fetchpatch {
122-
name = "mlterm-wayland-implicit-function-declaration.patch";
123-
url = "https://github.com/arakiken/mlterm/commit/20ab931d5055dc5835154a75ca672fade478549f.patch";
124-
hash = "sha256-rDmQ0e3dQD7UAGTX4ljOrDqTTddBqvnnRFnqDjRLAss=";
125-
})
126-
127-
(fetchpatch {
128-
url = "https://salsa.debian.org/debian/mlterm/-/raw/d9b1555e9220985e0c89a6ff5a0d58f7b18cc123/debian/patches/fix-incompat-pointer-types.patch";
129-
hash = "sha256-EcI15FjQfcN8pcE1MqsBfaHQ4j+gyoeesN/WoHb7WnU=";
130-
})
131-
];
132-
133113
nativeBuildInputs =
134114
[
135115
pkg-config
@@ -260,16 +240,16 @@ stdenv.mkDerivation (finalAttrs: {
260240
;
261241
};
262242

263-
meta = with lib; {
243+
meta = {
264244
description = "Multi Lingual TERMinal emulator";
265245
homepage = "https://mlterm.sourceforge.net/";
266-
license = licenses.bsd3;
267-
maintainers = with maintainers; [
246+
license = lib.licenses.bsd3;
247+
maintainers = with lib.maintainers; [
268248
ramkromberg
269249
atemu
270250
doronbehar
271251
];
272-
platforms = platforms.all;
252+
platforms = lib.platforms.all;
273253
mainProgram = desktopBinary;
274254
};
275255
})

0 commit comments

Comments
 (0)