aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/video/jellyfin-mpv-shim/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/video/jellyfin-mpv-shim/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/video/jellyfin-mpv-shim/default.nix21
1 files changed, 17 insertions, 4 deletions
diff --git a/nixpkgs/pkgs/applications/video/jellyfin-mpv-shim/default.nix b/nixpkgs/pkgs/applications/video/jellyfin-mpv-shim/default.nix
index de931074091..825aac4dad2 100644
--- a/nixpkgs/pkgs/applications/video/jellyfin-mpv-shim/default.nix
+++ b/nixpkgs/pkgs/applications/video/jellyfin-mpv-shim/default.nix
@@ -1,19 +1,27 @@
-{ stdenv, buildPythonApplication, fetchFromGitHub, fetchurl
+{ stdenv, buildPythonApplication, fetchFromGitHub, callPackage
, mpv, python-mpv-jsonipc, jellyfin-apiclient-python
, pillow, tkinter, pystray, jinja2, pywebview }:
+let
+ shaderPack = callPackage ./shader-pack.nix {};
+in
buildPythonApplication rec {
pname = "jellyfin-mpv-shim";
- version = "1.4.2";
+ version = "1.7.1";
src = fetchFromGitHub {
owner = "iwalton3";
repo = pname;
rev = "v${version}";
- sha256 = "1cnii5wj0pgqg3dqk5cm6slpbs3730x8ippps4cjbsxcsrmqjpx6";
+ sha256 = "0alrh5h3f8pq9mrq09jmpqa0yslxsjqwij6kwn24ggbwc10zkq75";
fetchSubmodules = true; # needed for display_mirror css file
};
+ patches = [
+ ./disable-desktop-client.patch
+ ./disable-update-check.patch
+ ];
+
# override $HOME directory:
# error: [Errno 13] Permission denied: '/homeless-shelter'
#
@@ -25,6 +33,11 @@ buildPythonApplication rec {
rm jellyfin_mpv_shim/win_utils.py
'';
+ postPatch = ''
+ # link the default shader pack
+ ln -s ${shaderPack} jellyfin_mpv_shim/default_shader_pack
+ '';
+
propagatedBuildInputs = [
jellyfin-apiclient-python
mpv
@@ -42,7 +55,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 ];
};