Merge pull request #267017 from slotThe/master

emacs: Add withSmallJaDic flag

authored by

Lin Jian and committed by
GitHub
a889e904 c388d07c

+2
+2
pkgs/applications/editors/emacs/make-emacs.nix
··· 89 , withX ? !(stdenv.isDarwin || noGui || withPgtk) 90 , withXinput2 ? withX && lib.versionAtLeast version "29" 91 , withXwidgets ? !stdenv.isDarwin && !noGui && (withGTK3 || withPgtk) 92 93 # Options 94 , siteStart ? ./site-start.el ··· 337 ++ lib.optional withTreeSitter "--with-tree-sitter" 338 ++ lib.optional withXinput2 "--with-xinput2" 339 ++ lib.optional withXwidgets "--with-xwidgets" 340 ; 341 342 env = lib.optionalAttrs withNativeCompilation {
··· 89 , withX ? !(stdenv.isDarwin || noGui || withPgtk) 90 , withXinput2 ? withX && lib.versionAtLeast version "29" 91 , withXwidgets ? !stdenv.isDarwin && !noGui && (withGTK3 || withPgtk) 92 + , withSmallJaDic ? false 93 94 # Options 95 , siteStart ? ./site-start.el ··· 338 ++ lib.optional withTreeSitter "--with-tree-sitter" 339 ++ lib.optional withXinput2 "--with-xinput2" 340 ++ lib.optional withXwidgets "--with-xwidgets" 341 + ++ lib.optional withSmallJaDic "--with-small-ja-dic" 342 ; 343 344 env = lib.optionalAttrs withNativeCompilation {