Unverified Commit 5a6cd10a authored by Aaron Andersen's avatar Aaron Andersen Committed by GitHub
Browse files

kodi: use JRE from correct package-set (#403807)

parents 86de8da5 fcacd459
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -16515,18 +16515,18 @@ with pkgs;
  kodi = callPackage ../applications/video/kodi {
    ffmpeg = ffmpeg_6;
    jre_headless = jdk11_headless;
    jre_headless = buildPackages.jdk11_headless;
  };
  kodi-wayland = callPackage ../applications/video/kodi {
    ffmpeg = ffmpeg_6;
    jre_headless = jdk11_headless;
    jre_headless = buildPackages.jdk11_headless;
    waylandSupport = true;
  };
  kodi-gbm = callPackage ../applications/video/kodi {
    ffmpeg = ffmpeg_6;
    jre_headless = jdk11_headless;
    jre_headless = buildPackages.jdk11_headless;
    gbmSupport = true;
  };