From b0fc7c1c767b5b3fb7ba5318cdcec919fb2f8080 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 28 May 2020 23:31:46 -0700 Subject: [PATCH] Add pandoc to Nix --- default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index fe247bf..c47fac2 100644 --- a/default.nix +++ b/default.nix @@ -2,8 +2,9 @@ with import {}; mkShell { buildInputs = [ + pandoc (python38.withPackages (ps: with ps; [ pip virtualenv ])) - (texlive.combine { inherit (texlive) scheme-basic IEEEtran collection-fontsrecommended todonotes caption pgfgantt setspace; }) + (texlive.combine { inherit (texlive) framed pdfjam pdfpages pdflscape scheme-basic IEEEtran collection-fontsrecommended todonotes caption pgfgantt setspace; }) ]; }