lol

Merge pull request #220246 from kirillrdy/plausible

authored by

Sandro and committed by
GitHub
17bbb993 0754f149

+5 -1
+4
pkgs/servers/web-apps/plausible/default.nix
··· 49 50 nativeBuildInputs = [ nodejs ]; 51 52 passthru = { 53 tests = { inherit (nixosTests) plausible; }; 54 updateScript = ./update.sh; 55 }; 56 57 postBuild = '' 58 export NODE_OPTIONS=--openssl-legacy-provider # required for webpack compatibility with OpenSSL 3 (https://github.com/webpack/webpack/issues/14532) 59 ln -sf ${yarnDeps}/node_modules assets/node_modules 60 npm run deploy --prefix ./assets
··· 49 50 nativeBuildInputs = [ nodejs ]; 51 52 + # https://github.com/whitfin/cachex/issues/205 53 + stripDebug = false; 54 + 55 passthru = { 56 tests = { inherit (nixosTests) plausible; }; 57 updateScript = ./update.sh; 58 }; 59 60 postBuild = '' 61 + export HOME=$TMPDIR 62 export NODE_OPTIONS=--openssl-legacy-provider # required for webpack compatibility with OpenSSL 3 (https://github.com/webpack/webpack/issues/14532) 63 ln -sf ${yarnDeps}/node_modules assets/node_modules 64 npm run deploy --prefix ./assets
+1 -1
pkgs/top-level/all-packages.nix
··· 3581 3582 play-with-mpv = callPackage ../tools/video/play-with-mpv { }; 3583 3584 - plausible = callPackage ../servers/web-apps/plausible { }; 3585 3586 pam-reattach = callPackage ../os-specific/darwin/pam-reattach { }; 3587
··· 3581 3582 play-with-mpv = callPackage ../tools/video/play-with-mpv { }; 3583 3584 + plausible = callPackage ../servers/web-apps/plausible { nodejs = nodejs-16_x; }; 3585 3586 pam-reattach = callPackage ../os-specific/darwin/pam-reattach { }; 3587