Merge pull request #157423 from andreoss/master

emacs: Add withToolkitScrollBars argument

authored by

adisbladis and committed by
GitHub
8092496c 8fba55aa

+4
+4
pkgs/applications/editors/emacs/generic.nix
··· 25 , srcRepo ? false, autoreconfHook ? null, texinfo ? null 26 , siteStart ? ./site-start.el 27 , nativeComp ? false 28 , withPgtk ? false 29 , withXinput2 ? false 30 , withImageMagick ? lib.versionOlder version "27" && (withX || withNS) ··· 32 if withGTK2 then "gtk2" 33 else if withGTK3 then "gtk3" 34 else if withMotif then "motif" 35 else "lucid") 36 }: 37 ··· 154 ++ lib.optional withImageMagick "--with-imagemagick" 155 ++ lib.optional withPgtk "--with-pgtk" 156 ++ lib.optional withXinput2 "--with-xinput2" 157 ; 158 159 installTargets = [ "tags" "install" ];
··· 25 , srcRepo ? false, autoreconfHook ? null, texinfo ? null 26 , siteStart ? ./site-start.el 27 , nativeComp ? false 28 + , withAthena ? false 29 + , withToolkitScrollBars ? true 30 , withPgtk ? false 31 , withXinput2 ? false 32 , withImageMagick ? lib.versionOlder version "27" && (withX || withNS) ··· 34 if withGTK2 then "gtk2" 35 else if withGTK3 then "gtk3" 36 else if withMotif then "motif" 37 + else if withAthena then "athena" 38 else "lucid") 39 }: 40 ··· 157 ++ lib.optional withImageMagick "--with-imagemagick" 158 ++ lib.optional withPgtk "--with-pgtk" 159 ++ lib.optional withXinput2 "--with-xinput2" 160 + ++ lib.optional (!withToolkitScrollBars) "--without-toolkit-scroll-bars" 161 ; 162 163 installTargets = [ "tags" "install" ];