From 0e5c0c5e6482f566f8fc5ca47f0a4320151ed0f0 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Thu, 18 May 2023 23:49:19 +0300 Subject: [PATCH] mlterm: disable fb gui due to mlconfig tool issue --- pkgs/applications/terminal-emulators/mlterm/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/terminal-emulators/mlterm/default.nix b/pkgs/applications/terminal-emulators/mlterm/default.nix index 217c6552efdd..dce5ad9d063a 100644 --- a/pkgs/applications/terminal-emulators/mlterm/default.nix +++ b/pkgs/applications/terminal-emulators/mlterm/default.nix @@ -22,7 +22,11 @@ # release 3.9.3, options are: (xlib|win32|fb|quartz|console|wayland|sdl2|beos) , enableGuis ? { xlib = enableX11; - fb = stdenv.isLinux; + # From some reason, upstream's ./configure script disables compilation of the + # external tool `mlconfig` if `enableGuis.fb == true`. This behavior is not + # documentd in `./configure --help`, and it is reported here: + # https://github.com/arakiken/mlterm/issues/73 + fb = false; quartz = stdenv.isDarwin; wayland = stdenv.isLinux; sdl2 = true;