From 5dd7a6e33dbb737e475d6547a9e71acee43b1810 Mon Sep 17 00:00:00 2001 From: Atemu Date: Sat, 15 Oct 2022 15:08:46 +0200 Subject: [PATCH] emacs: don't call macport emacs -nox --- pkgs/applications/editors/emacs/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs/generic.nix b/pkgs/applications/editors/emacs/generic.nix index f0e97a07194f..91110c48a74b 100644 --- a/pkgs/applications/editors/emacs/generic.nix +++ b/pkgs/applications/editors/emacs/generic.nix @@ -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;