archive/default.nix

11 lines
309 B
Nix

with import <nixpkgs> {};
mkShell {
buildInputs = [
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; })
];
}