Add pandoc to Nix

This commit is contained in:
Danila Fedorin 2020-05-28 23:31:46 -07:00
parent 82ae1c0469
commit b0fc7c1c76
1 changed files with 2 additions and 1 deletions

View File

@ -2,8 +2,9 @@ with import <nixpkgs> {};
mkShell {
buildInputs = [
pandoc
(python38.withPackages (ps: with ps; [ pip virtualenv ]))
(texlive.combine { inherit (texlive) scheme-basic IEEEtran collection-fontsrecommended todonotes caption pgfgantt setspace; })
(texlive.combine { inherit (texlive) framed pdfjam pdfpages pdflscape scheme-basic IEEEtran collection-fontsrecommended todonotes caption pgfgantt setspace; })
];
}