tvl-depot/users/grfn/gws.fyi/orgExportHTML.nix
sterni 508a62b603 chore(3p/sources): Bump channels & overlays
* Remove use of aliases that have been removed in nixpkgs commit
  a36f455905d55838a0d284656e096fbdb857cf3a:

  - ncat
  - x11
  - nologin
  - dbus_libs
  - emacsPackagesGen
  - man-pages
  - pulseaudioLight

Change-Id: Ide603bf48bc7f77e10e4aa715ba025aece3644fd
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5387
Tested-by: BuildkiteCI
Autosubmit: sterni <sternenseemann@systemli.org>
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: grfn <grfn@gws.fyi>
Reviewed-by: wpcarro <wpcarro@gmail.com>
2022-03-19 17:11:59 +00:00

71 lines
1.5 KiB
Nix

{ pkgs, depot, ... }:
with pkgs;
with lib;
let
emacsWithPackages = (pkgs.emacsPackagesFor pkgs.emacs27).emacsWithPackages;
emacs = emacsWithPackages (p: with p; [
org
]);
in
opts:
let
src = if isAttrs opts then opts.src else opts;
headline = if isAttrs opts then opts.headline else null;
bn = builtins.baseNameOf src;
filename = elemAt (splitString "." bn) 0;
outName =
if isNull headline
then
let
bn = builtins.baseNameOf src;
filename = elemAt (splitString "." bn) 0;
in
if depot.nix.utils.isDirectory src
then filename
else filename + ".html"
else "${filename}-${replaceStrings [" "] ["-"] filename}.html";
escapeDoubleQuotes = replaceStrings [ "\"" ] [ "\\\"" ];
navToHeadline = optionalString (! isNull headline) ''
(search-forward "${escapeDoubleQuotes headline}")
(org-narrow-to-subtree)
'';
in
runCommand outName { inherit src; } ''
buildFile() {
cp "$1" file.org
${emacs}/bin/emacs --batch \
--load ${./config.el} \
--visit file.org \
--eval "(progn
${escapeDoubleQuotes navToHeadline}
(org-html-export-to-html))" \
--kill
rm file.org
substitute file.html "$2" \
--replace '<title>&lrm;</title>' ""
rm file.html
}
if [ -d $src ]; then
for file in $src/*; do
result=''${file/$src/$out}
mkdir -p $(dirname $result)
buildFile $file ''${result/.org/.html}
done
else
buildFile $src $out
fi
''