mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
126 lines
3.2 KiB
Nix
126 lines
3.2 KiB
Nix
{ lib
|
|
, buildPythonApplication
|
|
, copyDesktopItems
|
|
, fetchPypi
|
|
, gobject-introspection
|
|
, jellyfin-apiclient-python
|
|
, jinja2
|
|
, makeDesktopItem
|
|
, mpv
|
|
, pillow
|
|
, pystray
|
|
, python
|
|
, python-mpv-jsonipc
|
|
, pywebview
|
|
, tkinter
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "jellyfin-mpv-shim";
|
|
version = "2.6.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-90Z2vgYT/9hBQZgfXeY7l6sGwT5KEY8X4rZMgrbTwrM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
wrapGAppsHook
|
|
gobject-introspection
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
jellyfin-apiclient-python
|
|
mpv
|
|
pillow
|
|
python-mpv-jsonipc
|
|
|
|
# gui dependencies
|
|
pystray
|
|
tkinter
|
|
|
|
# display_mirror dependencies
|
|
jinja2
|
|
pywebview
|
|
];
|
|
|
|
# override $HOME directory:
|
|
# error: [Errno 13] Permission denied: '/homeless-shelter'
|
|
#
|
|
# remove jellyfin_mpv_shim/win_utils.py:
|
|
# ModuleNotFoundError: No module named 'win32gui'
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
|
|
rm jellyfin_mpv_shim/win_utils.py
|
|
'';
|
|
|
|
postPatch = ''
|
|
substituteInPlace jellyfin_mpv_shim/conf.py \
|
|
--replace "check_updates: bool = True" "check_updates: bool = False" \
|
|
--replace "notify_updates: bool = True" "notify_updates: bool = False"
|
|
# python-mpv renamed to mpv with 1.0.4
|
|
substituteInPlace setup.py \
|
|
--replace "python-mpv" "mpv" \
|
|
--replace "mpv-jsonipc" "python_mpv_jsonipc"
|
|
'';
|
|
|
|
# Install all the icons for the desktop item
|
|
postInstall = ''
|
|
for s in 16 32 48 64 128 256; do
|
|
mkdir -p $out/share/icons/hicolor/''${s}x''${s}/apps
|
|
ln -s $out/${python.sitePackages}/jellyfin_mpv_shim/integration/jellyfin-''${s}.png \
|
|
$out/share/icons/hicolor/''${s}x''${s}/apps/${pname}.png
|
|
done
|
|
'';
|
|
|
|
# needed for pystray to access appindicator using GI
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
dontWrapGApps = true;
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "jellyfin_mpv_shim" ];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = pname;
|
|
exec = pname;
|
|
icon = pname;
|
|
desktopName = "Jellyfin MPV Shim";
|
|
categories = [ "Video" "AudioVideo" "TV" "Player" ];
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jellyfin/jellyfin-mpv-shim";
|
|
description = "Allows casting of videos to MPV via the jellyfin mobile and web app";
|
|
longDescription = ''
|
|
Jellyfin MPV Shim is a client for the Jellyfin media server which plays media in the
|
|
MPV media player. The application runs in the background and opens MPV only
|
|
when media is cast to the player. The player supports most file formats, allowing you
|
|
to prevent needless transcoding of your media files on the server. The player also has
|
|
advanced features, such as bulk subtitle updates and launching commands on events.
|
|
'';
|
|
license = with licenses; [
|
|
# jellyfin-mpv-shim
|
|
gpl3Only
|
|
mit
|
|
|
|
# shader-pack licenses (github:iwalton3/default-shader-pack)
|
|
# KrigBilateral, SSimDownscaler, NNEDI3
|
|
gpl3Plus
|
|
# Anime4K, FSRCNNX
|
|
mit
|
|
# Static Grain
|
|
unlicense
|
|
];
|
|
maintainers = with maintainers; [ jojosch ];
|
|
mainProgram = "jellyfin-mpv-shim";
|
|
};
|
|
}
|