2020-05-28 21:28:25 -07:00
|
|
|
with import <nixpkgs> {};
|
|
|
|
|
|
|
|
mkShell {
|
|
|
|
buildInputs = [
|
2020-05-28 23:31:46 -07:00
|
|
|
pandoc
|
2020-05-28 21:28:25 -07:00
|
|
|
(python38.withPackages (ps: with ps; [ pip virtualenv ]))
|
2020-05-28 23:31:46 -07:00
|
|
|
(texlive.combine { inherit (texlive) framed pdfjam pdfpages pdflscape scheme-basic IEEEtran collection-fontsrecommended todonotes caption pgfgantt setspace; })
|
2020-05-28 21:28:25 -07:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|