jellyfin: 10.9.1 -> 10.9.3

The `default.nix` was also formatted with `nixfmt-rfc-style` to be `RFC 166`-compliant.
This commit is contained in:
Nano Twerpus 2024-05-27 16:12:31 -04:00
parent 30881b23db
commit a7441feb23

View File

@ -1,30 +1,29 @@
{ lib
, fetchFromGitHub
, nixosTests
, stdenv
, dotnetCorePackages
, buildDotnetModule
, ffmpeg
, fontconfig
, freetype
, jellyfin-web
, sqlite
{
lib,
fetchFromGitHub,
nixosTests,
stdenv,
dotnetCorePackages,
buildDotnetModule,
ffmpeg,
fontconfig,
freetype,
jellyfin-web,
sqlite,
}:
buildDotnetModule rec {
pname = "jellyfin";
version = "10.9.1"; # ensure that jellyfin-web has matching version
version = "10.9.3"; # ensure that jellyfin-web has matching version
src = fetchFromGitHub {
owner = "jellyfin";
repo = "jellyfin";
rev = "v${version}";
sha256 = "sha256-ZvXz4gnpYE9bMvOHbmLhqJLUomPmk1K9ysw+Wlsyhr4=";
sha256 = "sha256-gJMz2LfxC0JXqGYNKNz1zRbWZOH1UxbcoGtmdymZ/Oo=";
};
propagatedBuildInputs = [
sqlite
];
propagatedBuildInputs = [ sqlite ];
projectFile = "Jellyfin.Server/Jellyfin.Server.csproj";
executables = [ "jellyfin" ];
@ -56,7 +55,12 @@ buildDotnetModule rec {
homepage = "https://jellyfin.org/";
# https://github.com/jellyfin/jellyfin/issues/610#issuecomment-537625510
license = licenses.gpl2Plus;
maintainers = with maintainers; [ nyanloutre minijackson purcell jojosch ];
maintainers = with maintainers; [
nyanloutre
minijackson
purcell
jojosch
];
mainProgram = "jellyfin";
platforms = dotnet-runtime.meta.platforms;
};