From 6a39b907f6e5868d7b3bfeb5e128bcd8a195ddc9 Mon Sep 17 00:00:00 2001 From: Johannes Schleifenbaum Date: Wed, 1 Jul 2020 13:12:56 +0200 Subject: [PATCH] jellyfin-mpv-shim: 1.4.2 -> 1.5.11 --- .../applications/video/jellyfin-mpv-shim/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/jellyfin-mpv-shim/default.nix b/pkgs/applications/video/jellyfin-mpv-shim/default.nix index de931074091..4021fda68b9 100644 --- a/pkgs/applications/video/jellyfin-mpv-shim/default.nix +++ b/pkgs/applications/video/jellyfin-mpv-shim/default.nix @@ -4,13 +4,13 @@ buildPythonApplication rec { pname = "jellyfin-mpv-shim"; - version = "1.4.2"; + version = "1.5.11"; src = fetchFromGitHub { owner = "iwalton3"; repo = pname; rev = "v${version}"; - sha256 = "1cnii5wj0pgqg3dqk5cm6slpbs3730x8ippps4cjbsxcsrmqjpx6"; + sha256 = "14hm8yccdp7w1vdnvdzafk1byhaq1qsr33i4962s1nvm9lafxkr7"; fetchSubmodules = true; # needed for display_mirror css file }; @@ -25,6 +25,12 @@ buildPythonApplication rec { rm jellyfin_mpv_shim/win_utils.py ''; + # disable the desktop client for now + postPatch = '' + substituteInPlace setup.py \ + --replace "'jellyfin-mpv-desktop=jellyfin_mpv_shim.mpv_shim:main_desktop'," "" + ''; + propagatedBuildInputs = [ jellyfin-apiclient-python mpv @@ -42,7 +48,7 @@ buildPythonApplication rec { meta = with stdenv.lib; { homepage = "https://github.com/iwalton3/jellyfin-mpv-shim"; - description = "Allows casting of videos to MPV via the jellyfin mobile and web app."; + description = "Allows casting of videos to MPV via the jellyfin mobile and web app"; license = licenses.gpl3; maintainers = with maintainers; [ jojosch ]; };