9f80c7486b
Fix Update pkgs/applications/video/jellyfin-media-player/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Update pkgs/applications/video/jellyfin-media-player/default.nix Co-authored-by: Alex Martens <alex@thinglab.org>
107 lines
2.3 KiB
Nix
107 lines
2.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, fetchzip
|
|
, mkDerivation
|
|
, stdenv
|
|
, Cocoa
|
|
, CoreAudio
|
|
, CoreFoundation
|
|
, MediaPlayer
|
|
, SDL2
|
|
, cmake
|
|
, libGL
|
|
, libX11
|
|
, libXrandr
|
|
, libvdpau
|
|
, mpv
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, qtbase
|
|
, qtwayland
|
|
, qtwebchannel
|
|
, qtwebengine
|
|
, qtx11extras
|
|
, jellyfin-web
|
|
, withDbus ? stdenv.isLinux, dbus
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "jellyfin-media-player";
|
|
version = "1.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jellyfin";
|
|
repo = "jellyfin-media-player";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-piMqI4qxcNUSNC+0JE2KZ/cvlNgtxUOnSfrcWnBVzC0=";
|
|
};
|
|
|
|
patches = [
|
|
# the webclient-files are not copied in the regular build script. Copy them just like the linux build
|
|
./fix-osx-resources.patch
|
|
# disable update notifications since the end user can't simply download the release artifacts to update
|
|
./disable-update-notifications.patch
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
libGL
|
|
libX11
|
|
libXrandr
|
|
libvdpau
|
|
mpv
|
|
qtbase
|
|
qtwebchannel
|
|
qtwebengine
|
|
qtx11extras
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
qtwayland
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
Cocoa
|
|
CoreAudio
|
|
CoreFoundation
|
|
MediaPlayer
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
"-DQTROOT=${qtbase}"
|
|
"-GNinja"
|
|
] ++ lib.optionals (!withDbus) [
|
|
"-DLINUX_X11POWER=ON"
|
|
];
|
|
|
|
preBuild = ''
|
|
# link the jellyfin-web files to the expected "dist" directory
|
|
ln -s ${jellyfin-web}/share/jellyfin-web dist
|
|
'';
|
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
mkdir -p $out/bin $out/Applications
|
|
mv "$out/Jellyfin Media Player.app" $out/Applications
|
|
|
|
# move web-client resources
|
|
mv $out/Resources/* "$out/Applications/Jellyfin Media Player.app/Contents/Resources/"
|
|
rmdir $out/Resources
|
|
|
|
ln -s "$out/Applications/Jellyfin Media Player.app/Contents/MacOS/Jellyfin Media Player" $out/bin/jellyfinmediaplayer
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jellyfin/jellyfin-media-player";
|
|
description = "Jellyfin Desktop Client based on Plex Media Player";
|
|
license = with licenses; [ gpl2Only mit ];
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
maintainers = with maintainers; [ jojosch kranzes ];
|
|
mainProgram = "jellyfinmediaplayer";
|
|
};
|
|
}
|