Skip to content

Commit

Permalink
jellyfin-web: use nodejs_20 to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
erictapen committed May 15, 2024
1 parent 670be70 commit e560714
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/servers/jellyfin/web.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
lib,
stdenv,
nodejs_20,
overrideSDK,
fetchFromGitHub,
buildNpmPackage,
Expand All @@ -22,7 +23,7 @@ let
}
else
stdenv;
buildNpmPackage' = buildNpmPackage.override { stdenv = stdenv'; };
buildNpmPackage' = buildNpmPackage.override { stdenv = stdenv'; nodejs = nodejs_20; };
in
buildNpmPackage' rec {
pname = "jellyfin-web";
Expand Down

0 comments on commit e560714

Please sign in to comment.