shells/axidraw: rename to plotter, add vpype

This commit is contained in:
Artemis Tosini 2024-01-20 06:21:00 +00:00
parent a0ddce8e11
commit 43bbc3c409
Signed by: artemist
GPG key ID: EE5227935FE3FF18
2 changed files with 10 additions and 2 deletions

View file

@ -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 { };
};

View file

@ -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
]);
}