lemmy-ui: no need to patch nodejs version after upstream nixpkgs update

This commit is contained in:
Colin 2023-06-11 06:28:32 +00:00
parent 8b1dbd42da
commit 3996e1be08
2 changed files with 0 additions and 6 deletions

View File

@ -89,7 +89,6 @@ let
jackett = callPackage ./patched/jackett { inherit (unpatched) jackett; };
lemmy-server = callPackage ./patched/lemmy-server { inherit (unpatched) lemmy-server; };
lemmy-ui = callPackage ./patched/lemmy-ui { inherit (unpatched) lemmy-ui; };
phoc = callPackage ./patched/phoc { inherit (unpatched) phoc; };

View File

@ -1,5 +0,0 @@
{ lemmy-ui, nodejs }:
lemmy-ui.override {
# build w/ latest nodejs; not 14.x
inherit nodejs;
}