libreoffice: add java.logging
to minimal JRE
This is e.g. required to properly use the Langtool-plugin[1] which otherwise fails like this: java.lang.NoClassDefFoundError: java/util/logging/Logger Fixes #160315 [1] https://extensions.libreoffice.org/en/extensions/show/languagetool
This commit is contained in:
parent
7c6759c27e
commit
b308b06c22
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ assert builtins.elem variant [ "fresh" "still" ];
|
|||
|
||||
let
|
||||
jre' = jre_minimal.override {
|
||||
modules = [ "java.base" "java.desktop" ];
|
||||
modules = [ "java.base" "java.desktop" "java.logging" ];
|
||||
};
|
||||
|
||||
importVariant = f: import (./. + "/src-${variant}/${f}");
|
||||
|
|
Loading…
Reference in a new issue