libreoffice: add java.sql dependency

Otherwise Base crashes on startup.
This commit is contained in:
K900 2022-06-22 18:17:18 +03:00 committed by Profpatsch
parent 64a7c1efd3
commit 523bd0ae27

View File

@ -121,7 +121,7 @@ let
optional optionals optionalString;
jre' = jre_minimal.override {
modules = [ "java.base" "java.desktop" "java.logging" ];
modules = [ "java.base" "java.desktop" "java.logging" "java.sql" ];
};
importVariant = f: import (./. + "/src-${variant}/${f}");