mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 04:25:14 +00:00
Merge pull request #40588 from worldofpeace/kodi-plugin-osmc-skin
xbmcPlugins.osmc-skin: init at 17.0.4
This commit is contained in:
commit
457d3651ca
@ -338,4 +338,26 @@ rec {
|
|||||||
|
|
||||||
extraBuildInputs = [ zlib ];
|
extraBuildInputs = [ zlib ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
osmc-skin = mkKodiPlugin rec {
|
||||||
|
|
||||||
|
plugin = "osmc-skin";
|
||||||
|
namespace = "skin.osmc";
|
||||||
|
version = "17.0.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "osmc";
|
||||||
|
repo = namespace;
|
||||||
|
rev = "a9268937f49286bab9fb49de430b8aafd7a60a9e";
|
||||||
|
sha256 = "1b3fm02annsq58pcfc985glrmh21rmqksdj3q8wn6gyza06jdf3v";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/omsc/skin.osmc;
|
||||||
|
description = "The default skin for OSMC";
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ worldofpeace ];
|
||||||
|
license = licenses.cc-by-nc-sa-30;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -18701,6 +18701,7 @@ with pkgs;
|
|||||||
++ optionals (config.kodi.enableHyperLauncher or false)
|
++ optionals (config.kodi.enableHyperLauncher or false)
|
||||||
(with hyper-launcher; [ plugin service pdfreader ])
|
(with hyper-launcher; [ plugin service pdfreader ])
|
||||||
++ optional (config.kodi.enableJoystick or false) joystick
|
++ optional (config.kodi.enableJoystick or false) joystick
|
||||||
|
++ optional (config.kodi.enableOSMCskin or false) osmc-skin
|
||||||
++ optional (config.kodi.enableSVTPlay or false) svtplay
|
++ optional (config.kodi.enableSVTPlay or false) svtplay
|
||||||
++ optional (config.kodi.enableSteamController or false) steam-controller
|
++ optional (config.kodi.enableSteamController or false) steam-controller
|
||||||
++ optional (config.kodi.enableSteamLauncher or false) steam-launcher
|
++ optional (config.kodi.enableSteamLauncher or false) steam-launcher
|
||||||
|
Loading…
Reference in New Issue
Block a user