From cb07880bbe4736e6d6a2ecc421b66f83278a54f0 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 28 May 2020 21:28:25 -0700 Subject: [PATCH] Add Nix expression to install document dependencies. --- default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 default.nix diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..fe247bf --- /dev/null +++ b/default.nix @@ -0,0 +1,9 @@ +with import {}; + +mkShell { + buildInputs = [ + (python38.withPackages (ps: with ps; [ pip virtualenv ])) + (texlive.combine { inherit (texlive) scheme-basic IEEEtran collection-fontsrecommended todonotes caption pgfgantt setspace; }) + ]; +} +