We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03dc8b8 commit 56f66edCopy full SHA for 56f66ed
flake.nix
@@ -94,6 +94,8 @@
94
let withWebrender = true;
95
in (final.emacsGit.override {
96
withImageMagick = true;
97
+ withNS = false;
98
+ withX = false;
99
inherit (prev) imagemagick;
100
}).overrideAttrs (old:
101
let
@@ -151,6 +153,7 @@
151
153
"--with-zlib"
152
154
"--with-dumping=pdumper"
155
] ++ lib.optionals withWebrender [ "--with-webrender" ]
156
+
157
++ lib.optionals (stdenv.isDarwin && withWebrender)
158
[ "--disable-webrender-self-contained" ]
159
++ lib.optionals stdenv.isLinux [ "--with-dbus" ];
0 commit comments