Commit 2448ffdd authored by Anderson Torres's avatar Anderson Torres Committed by Lin Jian
Browse files

emacs: set version tests as true

Emacs 28.x was removed at commit 7660ca03.
So, version is at least 29.
parent 51410351
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -90,13 +90,13 @@
  withNS ? stdenv.hostPlatform.isDarwin && !(variant == "macport" || noGui),
  withPgtk ? false,
  withSelinux ? stdenv.hostPlatform.isLinux,
  withSQLite3 ? lib.versionAtLeast version "29",
  withSQLite3 ? true,
  withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
  withToolkitScrollBars ? true,
  withTreeSitter ? lib.versionAtLeast version "29",
  withWebP ? lib.versionAtLeast version "29",
  withTreeSitter ? true,
  withWebP ? true,
  withX ? !(stdenv.hostPlatform.isDarwin || noGui || withPgtk),
  withXinput2 ? withX && lib.versionAtLeast version "29",
  withXinput2 ? withX,
  withXwidgets ?
    !stdenv.hostPlatform.isDarwin
    && !noGui