Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
928 B
Markdown
28 lines
928 B
Markdown
# Inkscape {#sec-inkscape}
|
|
|
|
[Inkscape](https://inkscape.org) is a powerful vector graphics editor.
|
|
|
|
## Plugins {#inkscape-plugins}
|
|
Inkscape plugins are collected in the [`inkscape-extensions`](https://search.nixos.org/packages?channel=unstable&type=packages&query=cudaPackages) package set.
|
|
To enable them, use an override on `inkscape-with-extensions`:
|
|
|
|
```nix
|
|
inkscape-with-extensions.override {
|
|
inkscapeExtensions = with inkscape-extensions; [ inkstitch ];
|
|
}
|
|
```
|
|
|
|
Similarly, this works in the shell:
|
|
|
|
```bash
|
|
$ nix-shell -p 'inkscape-with-extensions.override { inkscapeExtensions = with inkscape-extensions; [inkstitch]; }'
|
|
[nix-shell:~]$ # Ink/Stitch is now available via the extension menu
|
|
[nix-shell:~]$ inkscape
|
|
```
|
|
|
|
All available extensions can be enabled by passing `inkscapeExtensions = null;`.
|
|
|
|
::: {.note}
|
|
Loading the Inkscape extensions stand-alone (without using `override`) does not affect Inkscape at all.
|
|
:::
|