lemmy-ui: update nodejs version

This commit is contained in:
Colin 2023-05-26 21:04:12 +00:00
parent 209c18cb38
commit e5c94b410f
3 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,7 @@
- will make it easier to test new services?
### upstreaming
- bump nodejs version in lemmy-ui
- add updateScripts to all my packages in nixpkgs
- fix lightdm-mobile-greeter for newer libhandy
- port zecwallet-lite to a from-source build

View File

@ -80,6 +80,7 @@ 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

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