lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

listmonk: fix frontend build due to OpenSSL 3.0 deprecations

* listmonk: fix frontend build using Webpack due to OpenSSL 3.0 deprecations

See the OpenSSL 3.0 section here https://medium.com/the-node-js-collection/node-js-17-is-here-8dba1e14e382 for explanations.
Adds the missing hooks (pre/postinstall).

* listmonk: fix runHook preInstall

* listmonk: fix runHook postInstall

Co-authored-by: superherointj <5861043+superherointj@users.noreply.github.com>

authored by

Ryan Lahfa
superherointj
and committed by
GitHub
28f4c3d8 74662973

+7
+7
pkgs/servers/mail/listmonk/frontend.nix
··· 18 18 yarnLock = ./yarn.lock; 19 19 yarnNix = ./yarn.nix; 20 20 21 + # For Node.js v17+, this is necessary. 22 + NODE_OPTIONS = "--openssl-legacy-provider"; 23 + 21 24 installPhase = '' 25 + runHook preInstall 26 + 22 27 cd deps/listmonk-frontend/frontend 23 28 npm run build 24 29 25 30 mv dist $out 31 + 32 + runHook postInstall 26 33 ''; 27 34 28 35 doDist = false;