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