Unverified Commit ecd90927 authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

jellyfin{-web}: 10.10.0 -> 10.10.1 (#353836)

parents 7eb6ea1b 82858557
Loading
Loading
Loading
Loading
+11 −9
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
  stdenv,
  fetchFromGitHub,
  buildNpmPackage,
  jellyfin,
  nix-update-script,
  pkg-config,
  xcbuild,
@@ -11,16 +10,19 @@
  giflib,
  apple-sdk_11,
  darwinMinVersionHook,
  jellyfin,
}:
buildNpmPackage rec {
  pname = "jellyfin-web";
  version = "10.10.0";
  version = "10.10.1";

  src = fetchFromGitHub {
  src =
    assert version == jellyfin.version;
    fetchFromGitHub {
      owner = "jellyfin";
      repo = "jellyfin-web";
      rev = "v${version}";
    hash = "sha256-BuAvdDIvW2mQ+MzVBPGCFV73P6GxR/I3U24kCu+lXbc=";
      hash = "sha256-+f+chR00eDCVZvAGNDB61c0htsVvqFK62oZorW3Qdsg=";
    };

  postPatch = ''
@@ -28,7 +30,7 @@ buildNpmPackage rec {
      --replace-fail "git describe --always --dirty" "echo ${src.rev}" \
  '';

  npmDepsHash = "sha256-EAZm4UTc9+gW7uPiNEp2vLSKA2vOmLKKZ4/DrnGrvYQ=";
  npmDepsHash = "sha256-kL57KmBHmBwJEhsUciPaj826qdoSQxZXxtFNGkddGZk=";

  preBuild = ''
    # using sass-embedded fails at executing node_modules/sass-embedded-linux-x64/dart-sass/src/dart
+2 −2
Original line number Diff line number Diff line
@@ -13,13 +13,13 @@

buildDotnetModule rec {
  pname = "jellyfin";
  version = "10.10.0"; # ensure that jellyfin-web has matching version
  version = "10.10.1"; # ensure that jellyfin-web has matching version

  src = fetchFromGitHub {
    owner = "jellyfin";
    repo = "jellyfin";
    rev = "v${version}";
    hash = "sha256-XeMZEUorRrpS6GJ2qaXbyKUw0EaKCJF0PSoghUmOnrc=";
    hash = "sha256-jDiJ1tnCR3cZvNmvZ47Vvoqow1sC+xciHsO546yoIKY=";
  };

  propagatedBuildInputs = [ sqlite ];