refactor(aspen/orgExportHTML): use default emacs
In r/4000, I switched orgExportHTML to Emacs 28 (which bundles org by default) when nixpkgs defaulted to Emacs 27. Since nixpkgs now uses Emacs 29 by default, this is no longer necessary. Change-Id: I6d700e8508be77a1b9866557403a5a4ecaa005f7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12569 Tested-by: BuildkiteCI Autosubmit: sterni <sternenseemann@systemli.org> Reviewed-by: aspen <root@gws.fyi>
This commit is contained in:
parent
b50dad6e31
commit
8b9e4badf0
1 changed files with 1 additions and 7 deletions
|
@ -3,12 +3,6 @@
|
||||||
with pkgs;
|
with pkgs;
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
emacs = pkgs.emacs28;
|
|
||||||
|
|
||||||
in
|
|
||||||
|
|
||||||
opts:
|
opts:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -42,7 +36,7 @@ in
|
||||||
runCommand outName { inherit src; } ''
|
runCommand outName { inherit src; } ''
|
||||||
buildFile() {
|
buildFile() {
|
||||||
cp "$1" file.org
|
cp "$1" file.org
|
||||||
${emacs}/bin/emacs --batch \
|
${pkgs.emacs}/bin/emacs --batch \
|
||||||
--load ${./config.el} \
|
--load ${./config.el} \
|
||||||
--visit file.org \
|
--visit file.org \
|
||||||
--eval "(progn
|
--eval "(progn
|
||||||
|
|
Loading…
Reference in a new issue