+10
-5
pkgs/games/anki/default.nix
···············
···············
anki: move python libraries into 'lib' output
Fixes #438598
Anki's packaging got reworked in
https://github.com/NixOS/nixpkgs/pull/425219, and one of the changes was
to effectively 'pip install' the anki wheel into $out directly.
This resulted in an output structure of '$out/bin' and '$out/lib', with
python files in 'lib'.
Per #438598, this can cause conflicts.
Let's split anki into `anki.out` and `anki.lib`, requiring a user to
specifically include `anki.lib` in their environment in order to hit the
python conflicts described there.
This seems like the easiest solution, though I'm of course open to any
better alternatives.
···············
···············