From 2573d94ce97ae9ff6c3be12bddc265dda0e3b887 Mon Sep 17 00:00:00 2001 From: topquark12 Date: Fri, 8 Jul 2022 16:38:57 +0800 Subject: [PATCH] update shell.nix --- shell.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index 0c11f5d..86c25be 100644 --- a/shell.nix +++ b/shell.nix @@ -2,7 +2,7 @@ let pkgs = import {}; in pkgs.mkShell { - buildInputs = [ + buildInputs = with pkgs;[ #pkgs.texlive.combined.scheme-small @@ -39,6 +39,9 @@ in # if available, just add it to the above list }) - ]; + python3 + ] ++ (with python3Packages; [ + pygments + ]); } -- 2.44.1