about summary refs log tree commit diff
path: root/pkgs/applications/video/kodi
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2022-01-02 14:23:53 -0500
committerAaron Andersen <aaron@fosslib.net>2022-01-02 14:23:53 -0500
commitda82d35dcb0b5720d581fd0ff23450c83ebd2701 (patch)
tree10a64b6c46b38a7a2cb115b6956c1119d5ddbebd /pkgs/applications/video/kodi
parentbca10d1f5a3129c8fa37ed9f37e21f74b841175d (diff)
kodi.packages.orftvthek : init at 0.12.3-1
Diffstat (limited to 'pkgs/applications/video/kodi')
-rw-r--r--pkgs/applications/video/kodi/addons/orftvthek/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/video/kodi/addons/orftvthek/default.nix b/pkgs/applications/video/kodi/addons/orftvthek/default.nix
new file mode 100644
index 0000000000000..56f25ddc9d126
--- /dev/null
+++ b/pkgs/applications/video/kodi/addons/orftvthek/default.nix
@@ -0,0 +1,28 @@
+{ lib, buildKodiAddon, fetchFromGitHub, future, kodi-six, simplejson, inputstreamhelper }:
+
+buildKodiAddon rec {
+  pname = "orftvthek";
+  namespace = "plugin.video.orftvthek";
+  version = "0.12.3-1";
+
+  src = fetchFromGitHub {
+    owner = "s0faking";
+    repo = namespace;
+    rev = version;
+    sha256 = "sha256-+J1NtmjbDWtS8d4nO9P/lR5GNmvtc1YjTW+bulGaU2Q=";
+  };
+
+  propagatedBuildInputs = [
+    future
+    kodi-six
+    simplejson
+    inputstreamhelper
+  ];
+
+  meta = with lib; {
+    homepage = "https://github.com/s0faking/plugin.video.orftvthek";
+    description = "An addon that gives you access to the ORF TVthek Video Platform";
+    license = licenses.gpl2Only;
+    maintainers = teams.kodi.members;
+  };
+}