From 2448ffdd55c37596cca465369d5c8280ab09bef0 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Thu, 13 Mar 2025 20:58:19 -0300 Subject: [PATCH] emacs: set version tests as true Emacs 28.x was removed at commit 7660ca0367e87964cbcc8923fea02c844c30d106. So, version is at least 29. --- pkgs/applications/editors/emacs/make-emacs.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs/make-emacs.nix b/pkgs/applications/editors/emacs/make-emacs.nix index 69f98acb6859..48759700d0bc 100644 --- a/pkgs/applications/editors/emacs/make-emacs.nix +++ b/pkgs/applications/editors/emacs/make-emacs.nix @@ -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