2022-11-05 23:32:34 +00:00
|
|
|
{ lib, buildPythonApplication, fetchFromGitHub, mpv, requests, python-mpv-jsonipc, pystray, tkinter
|
|
|
|
, wrapGAppsHook, gobject-introspection }:
|
2020-02-27 00:36:48 +00:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "plex-mpv-shim";
|
2023-02-17 14:43:55 +00:00
|
|
|
version = "1.11.0";
|
2020-02-27 00:36:48 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "iwalton3";
|
|
|
|
repo = pname;
|
2023-02-17 14:43:55 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "sha256-hUGKOJEDZMK5uhHoevFt1ay6QQEcoN4F8cPxln5uMRo=";
|
2020-02-27 00:36:48 +00:00
|
|
|
};
|
|
|
|
|
2022-11-05 23:32:34 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
wrapGAppsHook
|
|
|
|
gobject-introspection
|
|
|
|
];
|
|
|
|
|
2022-01-20 19:00:00 +00:00
|
|
|
propagatedBuildInputs = [ mpv requests python-mpv-jsonipc pystray tkinter ];
|
2020-02-27 00:36:48 +00:00
|
|
|
|
2022-11-05 23:32:34 +00:00
|
|
|
# needed for pystray to access appindicator using GI
|
|
|
|
preFixup = ''
|
|
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
|
|
'';
|
|
|
|
dontWrapGApps = true;
|
|
|
|
|
2021-01-03 23:07:09 +00:00
|
|
|
# does not contain tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-27 00:36:48 +00:00
|
|
|
homepage = "https://github.com/iwalton3/plex-mpv-shim";
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "Allows casting of videos to MPV via the Plex mobile and web app";
|
2020-02-27 00:36:48 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|