File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 40
40
# (experimental). Needed if you use the hot-reloading feature of twist.el.
41
41
exportManifest ? false ,
42
42
configurationRevision ? null ,
43
+ extraSiteStartElisp ? "" ,
43
44
} : let
44
45
inherit
45
46
( builtins )
213
214
self . callPackage ./wrapper.nix
214
215
{
215
216
packageNames = attrNames packageInputs ;
216
- inherit extraOutputsToInstall exportManifest configurationRevision ;
217
+ inherit extraOutputsToInstall exportManifest configurationRevision extraSiteStartElisp ;
217
218
} ;
218
219
219
220
# This makes the attrset a derivation for a shorthand.
Original file line number Diff line number Diff line change 13
13
extraOutputsToInstall ,
14
14
exportManifest ,
15
15
configurationRevision ,
16
+ extraSiteStartElisp ,
16
17
} : let
17
18
inherit ( builtins ) length listToAttrs ;
18
19
101
102
(load "${ pkg } /share/emacs/site-lisp/${ pkg . ename } -autoloads.el" t t)
102
103
'' )
103
104
elispInputs
104
- } )
105
+ } )
106
+ ${ extraSiteStartElisp }
105
107
'' ;
106
108
107
109
elispManifestPath =
You can’t perform that action at this time.
0 commit comments