kodi: use jre8
This commit is contained in:
parent
6784e7ec75
commit
204c3fccdc
1 changed files with 11 additions and 3 deletions
|
@ -24176,11 +24176,19 @@ in
|
|||
gtk = gtk2;
|
||||
};
|
||||
|
||||
kodiPlain = callPackage ../applications/video/kodi { };
|
||||
kodiPlain = callPackage ../applications/video/kodi {
|
||||
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
||||
};
|
||||
|
||||
kodiPlainWayland = callPackage ../applications/video/kodi { useWayland = true; };
|
||||
kodiPlainWayland = callPackage ../applications/video/kodi {
|
||||
useWayland = true;
|
||||
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
||||
};
|
||||
|
||||
kodiGBM = callPackage ../applications/video/kodi { useGbm = true; };
|
||||
kodiGBM = callPackage ../applications/video/kodi {
|
||||
useGbm = true;
|
||||
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
||||
};
|
||||
|
||||
kodiPlugins = recurseIntoAttrs (callPackage ../applications/video/kodi/plugins.nix {});
|
||||
|
||||
|
|
Loading…
Reference in a new issue