nixpkgs/pkgs/applications/graphics/krita
lelgenio 54e0dba1d2 krita: create wrapper
You can tell Krita to look for plugins at an alternative
directory using KRITA_PLUGIN_PATH env variable.

Unfortunately you can only specify a single path at a time.
Some plugins necessary for krita to funciton are built
in the same derivation, this necessitates the use of `symlinkJoin`.

This patch adds a wrapper around krita that allows yout to add
more plugins than those provided by default.

Example structure of a plugin:

/nix/store/00000000000000000000000000000000-krita-plugin-example-1.2.3
└── lib
   └── kritaplugins
      └── krita_example.so

Once you have a plugin, you can add it to krita:

```nix
pkgs.krita.override {
    plugins = pkgs.krita.plugins ++ [
        your-plugin
    ];
}
```
2024-02-27 21:30:27 -03:00
..
default.nix krita: 5.2.0 -> 5.2.2 2023-12-21 01:22:30 -08:00
generic.nix krita: create wrapper 2024-02-27 21:30:27 -03:00
wrapper.nix krita: create wrapper 2024-02-27 21:30:27 -03:00