balena-cli: 22.4.13 -> 23.2.0

Updated nodejs version per:

https://github.com/balena-io/balena-cli/commit/acf6e708ef29604834f983b6aacd847b222e839b
This commit is contained in:
R. Ryantm
2025-11-23 13:24:29 +02:00
committed by Doron Behar
parent 4b7db3f5d0
commit 8ae53bb27e
+6 -6
View File
@@ -3,7 +3,7 @@
stdenv,
buildNpmPackage,
fetchFromGitHub,
nodejs_20,
nodejs_latest,
versionCheckHook,
node-gyp,
python3,
@@ -13,24 +13,24 @@
let
buildNpmPackage' = buildNpmPackage.override {
nodejs = nodejs_20;
nodejs = nodejs_latest;
};
node-gyp' = node-gyp.override {
nodejs = nodejs_20;
nodejs = nodejs_latest;
};
in
buildNpmPackage' rec {
pname = "balena-cli";
version = "22.4.13";
version = "23.2.0";
src = fetchFromGitHub {
owner = "balena-io";
repo = "balena-cli";
rev = "v${version}";
hash = "sha256-nke7EQscVPu1A/d4DKi7pSb6/MQgeFtG+zhMZT+bhWk=";
hash = "sha256-T4eOiFpU17vAwAM02gwJq93ZtJQUC7bv0CCFpj4NKEA=";
};
npmDepsHash = "sha256-GQXbXkOt8nkOB2OeEcKsp1yJd5lXS+KKout/5ffLgD0=";
npmDepsHash = "sha256-kRkc3o8xmROlH17GI3yoGvMwEweHrLeGpvW3rH0wOSU=";
makeCacheWritable = true;