emacs: don't call macport emacs -nox

This commit is contained in:
Atemu 2022-10-15 15:08:46 +02:00
parent d34513014f
commit 5dd7a6e33d

View File

@ -64,7 +64,7 @@ let emacs = (if withMacport then llvmPackages_6.stdenv else stdenv).mkDerivation
NATIVE_FULL_AOT = "1";
LIBRARY_PATH = "${lib.getLib stdenv.cc.libc}/lib";
} // {
pname = pname + lib.optionalString ( !withX && !withNS && !withGTK2 && !withGTK3 ) "-nox";
pname = pname + lib.optionalString ( !withX && !withNS && !withMacport && !withGTK2 && !withGTK3 ) "-nox";
inherit version;
patches = patches fetchpatch;