shells/plotter: add new extensions

This commit is contained in:
Artemis Tosini 2024-02-20 02:28:45 +00:00
parent 3e0cca3f9d
commit 5918a61bca
Signed by: artemist
GPG key ID: ADFFE553DCBB831E
3 changed files with 9 additions and 5 deletions

View file

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1707743206,
"narHash": "sha256-AehgH64b28yKobC/DAWYZWkJBxL/vP83vkY+ag2Hhy4=",
"lastModified": 1708341091,
"narHash": "sha256-3R7doGV1AoB5VKFifEd5elj8t4cld6VpJRpn9NaYr1Y=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "2d627a2a704708673e56346fcb13d25344b8eaf3",
"rev": "86ef6bd96b6279e1a4a53236d341f5df1ede3803",
"type": "github"
},
"original": {

View file

@ -2,7 +2,7 @@
python3.buildPythonPackage rec {
pname = "vpype";
version = "1.13.0";
version = "0.13.0";
format = "setuptools";
src = fetchFromGitHub {

View file

@ -3,7 +3,11 @@
mkShell {
packages = [
(inkscape-with-extensions.override {
inkscapeExtensions = [ inkscape-extensions.axidraw ];
inkscapeExtensions = with inkscape-extensions; [
silhouette
inkcut
axidraw
];
})
python3
jupyter