From c836fc415e9324a6d7f586b7b7f55b0258c18589 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 11 May 2019 12:14:53 +0200 Subject: Update Tasker tasks --- tasks/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/tasks/default.nix b/tasks/default.nix index 6b891dd..c1a6876 100644 --- a/tasks/default.nix +++ b/tasks/default.nix @@ -49,19 +49,16 @@ in { cmake gcc8 gdb cgdb + universal-ctags ]); }; - latex_shell = { - description = "Generic LaTeX shell environment"; + sympy_shell = { + description = "Python shell with SymPy"; directory = "~/"; type = "environment"; - environment = with pkgs; let - texlive-custom = texlive.combine { - inherit (texlive) scheme-small collection-langgerman latexmk amsmath enumitem; - }; - in mkShellDerivation "latex-env" [ - texlive-custom + environment = with pkgs; mkShellDerivation "python-env" [ + (pkgs.python3.withPackages (python-packages: with python-packages; [ sympy ])) ]; }; }; -- cgit v1.2.3