Commit a7441feb authored by Nano Twerpus's avatar Nano Twerpus
Browse files

jellyfin: 10.9.1 -> 10.9.3

The `default.nix` was also formatted with `nixfmt-rfc-style` to be `RFC 166`-compliant.
parent 30881b23
Loading
Loading
Loading
Loading
+21 −17
Original line number Diff line number Diff line
{ 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;
  };