writing: 437077d30bd2d1e738bb0221aafc806ce09e0779

     1: with (import ../resources).nixpkgs;
     2: 
     3: {
     4:   pdf = runCommand "CICM-2017-report.pdf"
     5:     {
     6:       source      = ./report.md;
     7:       buildInputs = [
     8:         pandocPkgs
     9:         (texlive.combine {
    10:           inherit (texlive)
    11:             scheme-small tikzinclude tikz-qtree algorithmicx algorithm2e
    12:             algorithms frankenstein csquotes helvetic paralist chktex enumitem;
    13:         })
    14:       ];
    15:     }
    16:     ''
    17:       pandoc --latex-engine=xelatex -o "$out"  "$source"
    18:     '';
    19: 
    20:   html = runCommand "CICM-2017-report.html"
    21:     {
    22:       source      = ./report.md;
    23:       buildInputs = [ pandocPkgs ];
    24:     }
    25:     ''
    26:       pandoc --standalone -o "$out" "$source"
    27:     '';
    28: }

Generated by git2html.