packages/shells/plotter/default.nix

25 lines
417 B
Nix
Raw Normal View History

2024-01-15 20:42:27 +00:00
{ lib, mkShell, python3, inkscape-with-extensions, inkscape-extensions, jupyter
}:
2024-01-15 15:55:17 +00:00
mkShell {
packages = [
(inkscape-with-extensions.override {
2024-02-20 02:28:45 +00:00
inkscapeExtensions = with inkscape-extensions; [
silhouette
inkcut
axidraw
];
2024-01-15 15:55:17 +00:00
})
python3
2024-01-15 20:42:27 +00:00
jupyter
] ++ (with python3.pkgs; [
axicli
drawsvg
ipython
pillow
requests
vpype
vpype-gcode
]);
2024-01-15 15:55:17 +00:00
}