11 lines
300 B
Nix
11 lines
300 B
Nix
with import <nixpkgs> {};
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
pandoc
|
|
(python38.withPackages (ps: with ps; [ pip virtualenv ]))
|
|
(texlive.combine { inherit (texlive) framed pdfjam pdfpages pdflscape scheme-basic IEEEtran collection-fontsrecommended todonotes caption pgfgantt setspace; })
|
|
];
|
|
}
|
|
|