11 lines
274 B
Nix
11 lines
274 B
Nix
|
{
|
||
|
runCommand,
|
||
|
emacs,
|
||
|
}:
|
||
|
runCommand "bookmarks" {} ''
|
||
|
mkdir $out
|
||
|
cp ${./default.org} $out/bookmarks.org
|
||
|
cp ${./stylesheet.css} $out/stylesheet.css
|
||
|
${emacs}/bin/emacs -Q $out/bookmarks.org --batch --eval="(cd \"$out\")" -f pwd -f org-html-export-to-html --kill
|
||
|
''
|