2016-09-05 17:01:26 +01:00
|
|
|
# Functions to build elisp files to locally configure emcas buffers.
|
|
|
|
# See https://github.com/shlevy/nix-buffer
|
|
|
|
|
2016-10-07 15:31:37 +01:00
|
|
|
{ lib, writeText, inherit-local }:
|
2016-09-05 17:01:26 +01:00
|
|
|
|
|
|
|
{
|
2016-09-05 22:55:49 +01:00
|
|
|
withPackages = pkgs: let
|
2016-10-07 15:31:37 +01:00
|
|
|
extras = map (x: x.emacsBufferSetup pkgs) (builtins.filter (builtins.hasAttr "emacsBufferSetup") pkgs);
|
2016-09-05 22:55:49 +01:00
|
|
|
in writeText "dir-locals.el" ''
|
2016-10-07 15:31:37 +01:00
|
|
|
(require 'inherit-local "${inherit-local}/share/emacs/site-lisp/elpa/inherit-local-${inherit-local.version}/inherit-local.elc")
|
|
|
|
|
|
|
|
; Only set up nixpkgs buffer handling when we have some buffers active
|
|
|
|
(defvar nixpkgs--buffer-count 0)
|
|
|
|
(when (eq nixpkgs--buffer-count 0)
|
2017-03-01 16:00:07 +00:00
|
|
|
(make-variable-buffer-local 'nixpkgs--is-nixpkgs-buffer)
|
2016-10-07 15:31:37 +01:00
|
|
|
; When generating a new temporary buffer (one whose name starts with a space), do inherit-local inheritance and make it a nixpkgs buffer
|
|
|
|
(defun nixpkgs--around-generate (orig name)
|
2017-03-01 16:00:07 +00:00
|
|
|
(if (and nixpkgs--is-nixpkgs-buffer (eq (aref name 0) ?\s))
|
2016-10-07 15:31:37 +01:00
|
|
|
(let ((buf (funcall orig name)))
|
2017-03-01 16:00:07 +00:00
|
|
|
(progn
|
|
|
|
(inherit-local-inherit-child buf)
|
2016-10-07 15:31:37 +01:00
|
|
|
(with-current-buffer buf
|
|
|
|
(setq nixpkgs--buffer-count (1+ nixpkgs--buffer-count))
|
2017-03-01 16:00:07 +00:00
|
|
|
(add-hook 'kill-buffer-hook 'nixpkgs--decrement-buffer-count nil t)))
|
2016-10-07 15:31:37 +01:00
|
|
|
buf)
|
|
|
|
(funcall orig name)))
|
|
|
|
(advice-add 'generate-new-buffer :around #'nixpkgs--around-generate)
|
|
|
|
; When we have no more nixpkgs buffers, tear down the buffer handling
|
|
|
|
(defun nixpkgs--decrement-buffer-count ()
|
|
|
|
(setq nixpkgs--buffer-count (1- nixpkgs--buffer-count))
|
|
|
|
(when (eq nixpkgs--buffer-count 0)
|
|
|
|
(advice-remove 'generate-new-buffer #'nixpkgs--around-generate)
|
|
|
|
(fmakunbound 'nixpkgs--around-generate)
|
|
|
|
(fmakunbound 'nixpkgs--decrement-buffer-count))))
|
|
|
|
(setq nixpkgs--buffer-count (1+ nixpkgs--buffer-count))
|
2017-03-01 16:00:07 +00:00
|
|
|
(add-hook 'kill-buffer-hook 'nixpkgs--decrement-buffer-count nil t)
|
2016-10-07 15:31:37 +01:00
|
|
|
|
|
|
|
; Add packages to PATH and exec-path
|
2016-09-05 22:55:49 +01:00
|
|
|
(make-local-variable 'process-environment)
|
2016-10-07 15:31:37 +01:00
|
|
|
(put 'process-environment 'permanent-local t)
|
|
|
|
(inherit-local 'process-environment)
|
2016-09-05 22:55:49 +01:00
|
|
|
(setenv "PATH" (concat "${lib.makeSearchPath "bin" pkgs}:" (getenv "PATH")))
|
2016-10-07 15:31:37 +01:00
|
|
|
(inherit-local-permanent exec-path (append '(${builtins.concatStringsSep " " (map (p: "\"${p}/bin\"") pkgs)}) exec-path))
|
|
|
|
|
2017-03-01 16:00:07 +00:00
|
|
|
(setq nixpkgs--is-nixpkgs-buffer t)
|
|
|
|
(inherit-local 'nixpkgs--is-nixpkgs-buffer)
|
|
|
|
|
2016-10-07 15:31:37 +01:00
|
|
|
${lib.concatStringsSep "\n" extras}
|
2016-09-05 22:55:49 +01:00
|
|
|
'';
|
2016-09-05 17:01:26 +01:00
|
|
|
}
|