From 43bbc3c409eafbb821f82dc77c57c45985f37b85 Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Sat, 20 Jan 2024 06:21:00 +0000 Subject: [PATCH] shells/axidraw: rename to plotter, add vpype --- flake.nix | 2 +- shells/{axidraw => plotter}/default.nix | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) rename shells/{axidraw => plotter}/default.nix (66%) 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 + ]); }