Add Nix expression to install document dependencies.

This commit is contained in:
Danila Fedorin 2020-05-28 21:28:25 -07:00
parent c2411d53da
commit cb07880bbe
1 changed files with 9 additions and 0 deletions

9
default.nix Normal file
View File

@ -0,0 +1,9 @@
with import <nixpkgs> {};
mkShell {
buildInputs = [
(python38.withPackages (ps: with ps; [ pip virtualenv ]))
(texlive.combine { inherit (texlive) scheme-basic IEEEtran collection-fontsrecommended todonotes caption pgfgantt setspace; })
];
}