diff --git a/flake.nix b/flake.nix index 567bc7d..47eb34a 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ names = builtins.attrNames (self.overlays.default pkgs pkgs); in { devShells = { - axidraw = pkgs.callPackage ./shells/axidraw { }; + plotter = pkgs.callPackage ./shells/plotter { }; zephyr = pkgs.callPackage ./shells/zephyr { }; }; diff --git a/shells/axidraw/default.nix b/shells/plotter/default.nix similarity index 66% rename from shells/axidraw/default.nix rename to shells/plotter/default.nix index 0e4bad8..f2a2358 100644 --- a/shells/axidraw/default.nix +++ b/shells/plotter/default.nix @@ -7,6 +7,14 @@ mkShell { }) python3 jupyter - ] ++ (with python3.pkgs; [ ipython requests axicli drawsvg pillow ]); + ] ++ (with python3.pkgs; [ + axicli + drawsvg + ipython + pillow + requests + vpype + vpype-gcode + ]); }