archive/default.nix

11 lines
309 B
Nix
Raw Normal View History

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