Unverified Commit 8f50bc71 authored by Atemu's avatar Atemu Committed by GitHub
Browse files

Merge pull request #232706 from doronbehar/pkg/mlterm-fb

mlterm: disable fb gui due to mlconfig tool issue
parents d112eeec 0e5c0c5e
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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;