super-productivity: pin nodejs version to nodejs_22

The update to nodejs_24 was causing npm ci to fail on this package.
This patch pins the node version to 22.
This commit is contained in:
Shogo Takata
2026-01-06 02:23:24 +09:00
parent d410f1407c
commit 413af61a0a
@@ -10,14 +10,18 @@
prefetch-npm-deps,
rsync,
stdenv,
nodejs_22,
}:
let
electron = electron_37;
nodejs = nodejs_22;
in
buildNpmPackage rec {
pname = "super-productivity";
version = "16.7.3";
inherit nodejs;
src = fetchFromGitHub {
owner = "johannesjo";
repo = "super-productivity";