all repos — nix-packages @ ae26a7655ce3169956421be0102a0671769d9c0a

My personal collection of packages for nix

emacs-unlimited-select: init as override of pkgs.emacs

Alan Pearce
commit

ae26a7655ce3169956421be0102a0671769d9c0a

parent

3a9a0211c9c5055f792fc6f21b1ff3dfd71b2a34

1 file changed, 10 insertions(+), 0 deletions(-)

changed files
A pkgs/emacs-unlimited-select/default.nix
@@ -0,0 +1,10 @@
+{ stdenv +, emacs +}: + +assert stdenv.isDarwin; + +emacs.overrideAttrs (old: { + NIX_CFLAGS_COMPILE = (old.NIX_CFLAGS_COMPILE or "") + + " -DFD_SETSIZE=10000 -DDARWIN_UNLIMITED_SELECT"; +})