about summary refs log tree commit diff
path: root/pkgs/applications/video/kodi
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-05-16 07:57:17 -0400
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-05-16 08:27:42 -0400
commit1edc7ae63917ee28de05a0ec43ae550652e2af93 (patch)
tree135c64f4fc1ecbf1a225ac02c0bc2604d04ce30d /pkgs/applications/video/kodi
parentdd73ab00923a4b39fe7b3fbce31cadfd38d8177b (diff)
downloadnixlib-1edc7ae63917ee28de05a0ec43ae550652e2af93.tar
nixlib-1edc7ae63917ee28de05a0ec43ae550652e2af93.tar.gz
nixlib-1edc7ae63917ee28de05a0ec43ae550652e2af93.tar.bz2
nixlib-1edc7ae63917ee28de05a0ec43ae550652e2af93.tar.lz
nixlib-1edc7ae63917ee28de05a0ec43ae550652e2af93.tar.xz
nixlib-1edc7ae63917ee28de05a0ec43ae550652e2af93.tar.zst
nixlib-1edc7ae63917ee28de05a0ec43ae550652e2af93.zip
xbmcPlugins.osmc-skin: init at 17.0.4
Diffstat (limited to 'pkgs/applications/video/kodi')
-rw-r--r--pkgs/applications/video/kodi/plugins.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix
index 01e134afee6f..f263182c6fc1 100644
--- a/pkgs/applications/video/kodi/plugins.nix
+++ b/pkgs/applications/video/kodi/plugins.nix
@@ -338,4 +338,26 @@ rec {
 
     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;
+    };
+  };
 }