python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / video / kodi / addons / steam-launcher / default.nix
blobc4a695b8f8137f740cedf54b5425d2b6a9a9f384
1 { lib, buildKodiAddon, fetchFromGitHub, steam }:
2 buildKodiAddon {
3   pname = "steam-launcher";
4   namespace = "script.steam.launcher";
5   version = "3.5.1";
7   src = fetchFromGitHub rec {
8     owner = "teeedubb";
9     repo = owner + "-xbmc-repo";
10     rev = "8260bf9b464846a1f1965da495d2f2b7ceb81d55";
11     sha256 = "1fj3ry5s44nf1jzxk4bmnpa4b9p23nrpmpj2a4i6xf94h7jl7p5k";
12   };
14   propagatedBuildInputs = [ steam ];
16   meta = with lib; {
17     homepage = "https://forum.kodi.tv/showthread.php?tid=157499";
18     description = "Launch Steam in Big Picture Mode from Kodi";
19     longDescription = ''
20       This add-on will close/minimise Kodi, launch Steam in Big
21       Picture Mode and when Steam BPM is exited (either by quitting
22       Steam or returning to the desktop) Kodi will
23       restart/maximise. Running pre/post Steam scripts can be
24       configured via the addon.
25     '';
26     license = licenses.gpl2Only;
27     maintainers = teams.kodi.members;
28   };