Merge pull request #267946 from slotThe/emacs/no-compression

emacs: Add withCompressInstall flag

authored by

adisbladis and committed by
GitHub
8374287c 0b3cc378

+2
+2
pkgs/applications/editors/emacs/make-emacs.nix
··· 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 ··· 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 {
··· 90 , withXinput2 ? withX && lib.versionAtLeast version "29" 91 , withXwidgets ? !stdenv.isDarwin && !noGui && (withGTK3 || withPgtk) 92 , withSmallJaDic ? false 93 + , withCompressInstall ? true 94 95 # Options 96 , siteStart ? ./site-start.el ··· 340 ++ lib.optional withXinput2 "--with-xinput2" 341 ++ lib.optional withXwidgets "--with-xwidgets" 342 ++ lib.optional withSmallJaDic "--with-small-ja-dic" 343 + ++ lib.optional (!withCompressInstall) "--without-compress-install" 344 ; 345 346 env = lib.optionalAttrs withNativeCompilation {