archive/default.nix

17 lines
298 B
Nix
Raw Normal View History

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; })
];
}