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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
{ lib
, runCommand
, makeFontsConf
, fira
, fira-code
, freefont_ttf
, lmodern
, pandoc
, pandoc-lua-filters
, pandoc-templates
, pygments
, texlive
, which
, documentType ? "latex"
}:
{ name, src, extraPandocArgs ? [ ], extraLatexArgs ? [ ] }:
with lib;
runCommand name
{
inherit src;
nativeBuildInputs = [
pandoc
pygments
fira-code
which
(texlive.combine {
inherit (texlive)
scheme-medium
latexmk
beamertheme-metropolis
beamercolorthemeowl
# For framed code listings
tcolorbox environ
# Optional pandoc dependencies
microtype upquote parskip xurl bookmark footnotehyper
# Some dependencies
fvextra pgfopts minted catchfile xstring framed;
})
];
FONTCONFIG_FILE = makeFontsConf {
fontDirectories = [ lmodern freefont_ttf fira fira-code ];
};
pandocCmd = ''
pandoc ${name}.md -t ${documentType} -so document.tex
--template=${pandoc-templates}/default.latex
--lua-filter=${pandoc-lua-filters}/share/pandoc/filters/minted.lua
--pdf-engine=xelatex
--pdf-engine-opt=-aux-directory=./build
--pdf-engine-opt=-shell-escape ${escapeShellArgs extraPandocArgs}
'';
latexmkCmd = ''
latexmk
-shell-escape
-xelatex
-8bit
-interaction=nonstopmode
-verbose
-file-line-error
-output-directory=./build document.tex ${escapeShellArgs extraLatexArgs}
'';
} ''
unpackFile $src
cd */
chmod -R u+w .
$pandocCmd
$latexmkCmd
cp build/document.pdf $out
''
# TODO: diagram-generator?
|