packages/shells/axidraw/default.nix

11 lines
279 B
Nix

{ lib, mkShell, python3, inkscape-with-extensions, inkscape-extensions }:
mkShell {
packages = [
(inkscape-with-extensions.override {
inkscapeExtensions = [ inkscape-extensions.axidraw ];
})
python3
] ++ (with python3.pkgs; [ ipython requests axicli ]);
}