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

This commit is contained in:
Austin Horstman
2024-11-08 15:50:27 -06:00
committed by GitHub
2 changed files with 13 additions and 11 deletions
+11 -9
View File
@@ -3,7 +3,6 @@
stdenv,
fetchFromGitHub,
buildNpmPackage,
jellyfin,
nix-update-script,
pkg-config,
xcbuild,
@@ -11,24 +10,27 @@
giflib,
apple-sdk_11,
darwinMinVersionHook,
jellyfin,
}:
buildNpmPackage rec {
pname = "jellyfin-web";
version = "10.10.0";
version = "10.10.1";
src = fetchFromGitHub {
owner = "jellyfin";
repo = "jellyfin-web";
rev = "v${version}";
hash = "sha256-BuAvdDIvW2mQ+MzVBPGCFV73P6GxR/I3U24kCu+lXbc=";
};
src =
assert version == jellyfin.version;
fetchFromGitHub {
owner = "jellyfin";
repo = "jellyfin-web";
rev = "v${version}";
hash = "sha256-+f+chR00eDCVZvAGNDB61c0htsVvqFK62oZorW3Qdsg=";
};
postPatch = ''
substituteInPlace webpack.common.js \
--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
View File
@@ -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 ];