Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
574 B
Nix
28 lines
574 B
Nix
{
|
|
lib,
|
|
buildKodiAddon,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildKodiAddon rec {
|
|
pname = "osmc-skin";
|
|
namespace = "skin.osmc";
|
|
version = "20.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osmc";
|
|
repo = namespace;
|
|
rev = "v20.1.0-August-update";
|
|
sha256 = "E/+gC7NlVRMaymeYMBO39/+rs0blDjr2zIROr24ekzQ=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/osmc/skin.osmc";
|
|
description = "Default skin for OSMC";
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
license = licenses.cc-by-nc-sa-30;
|
|
|
|
broken = true; # no release for kodi 21
|
|
};
|
|
}
|