From e3aa6aede0fa4bf49e9058c49df590d9a79e495f Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Thu, 26 May 2022 15:10:05 +0200 Subject: [PATCH] chore(shell.nix): add texlive basic scheme --- shell.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index cb2e37213..7b085f90e 100644 --- a/shell.nix +++ b/shell.nix @@ -70,5 +70,7 @@ let ''; in pkgs.mkShell { name = "uni2work"; - nativeBuildInputs = [develop inDevelop killallUni2work diffRunning] ++ (with pkgs; [ nodejs-14_x postgresql_12 openldap google-chrome exiftool memcached minio minio-client gup skopeo ]) ++ (with pkgs.haskellPackages; [ stack yesod-bin hlint cabal-install weeder profiteur ]); + nativeBuildInputs = [develop inDevelop killallUni2work diffRunning] + ++ (with pkgs; [ nodejs-14_x postgresql_12 openldap google-chrome exiftool memcached minio minio-client gup skopeo texlive.combined.scheme-basic ]) + ++ (with pkgs.haskellPackages; [ stack yesod-bin hlint cabal-install weeder profiteur ]); }