-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.dir-locals.el
38 lines (37 loc) · 1.29 KB
/
.dir-locals.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
;;; Directory Local Variables -*- no-byte-compile: t; -*-
;;; For more information see (info "(emacs) Directory Variables")
((nil
.
((disproject-custom-suffixes
.
(["From pinned channels"
("t c" "Compile" disproject-compile
:cmd "\
profile=.time-machine-guix-profile
[ -e $profile ] && rm $profile
export GUIX_PACKAGE_PATH=''
guix time-machine --channels=channels.scm -- \\
shell --development --file=guix.scm --file=guix.scm \\
--manifest=manifest.scm emacs \\
--root=$profile --search-paths"
:buffer-id "time-machine-profile")
("t r" "Run" disproject-compile
:cmd "\
guix shell --pure --profile=.time-machine-guix-profile -- \\
emacs --no-init-file --eval \"(require 'disproject)\""
:buffer-id "time-machine-profile")]
["Latest"
("l c" "Compile" disproject-compile
:cmd "\
profile=.latest-guix-profile
[ -e $profile ] && rm $profile
export GUIX_PACKAGE_PATH=''
guix shell --development --file=guix.scm --file=guix.scm \\
--manifest=manifest.scm emacs-next \\
--root=$profile --search-paths"
:buffer-id "latest-profile")
("l r" "Run" disproject-compile
:cmd "\
guix shell --pure --profile=.latest-guix-profile -- \\
emacs --no-init-file --eval \"(require 'disproject)\""
:buffer-id "latest-profile")])))))