Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
79 lines
1.9 KiB
Nix
79 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
nodejs_20,
|
|
versionCheckHook,
|
|
node-gyp,
|
|
python3,
|
|
udev,
|
|
cctools,
|
|
apple-sdk_12,
|
|
}:
|
|
|
|
let
|
|
buildNpmPackage' = buildNpmPackage.override {
|
|
nodejs = nodejs_20;
|
|
};
|
|
node-gyp' = node-gyp.override {
|
|
nodejs = nodejs_20;
|
|
};
|
|
in
|
|
buildNpmPackage' rec {
|
|
pname = "balena-cli";
|
|
version = "22.4.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "balena-io";
|
|
repo = "balena-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-Q3/2Uv7Lke7lBzcEPPgq5FWzWvBNdADvkXL4BBaHX9o=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-7LVgD8uQEK1FQuWUsD7zgQrh0HB51XEkbp/TU7m1K3w=";
|
|
|
|
postPatch = ''
|
|
ln -s npm-shrinkwrap.json package-lock.json
|
|
'';
|
|
makeCacheWritable = true;
|
|
|
|
nativeBuildInputs = [
|
|
node-gyp'
|
|
python3
|
|
versionCheckHook
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
cctools
|
|
];
|
|
|
|
buildInputs =
|
|
lib.optionals stdenv.hostPlatform.isLinux [
|
|
udev
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
apple-sdk_12
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
versionCheckProgram = "${placeholder "out"}/bin/balena";
|
|
|
|
meta = {
|
|
description = "Command line interface for balenaCloud or openBalena";
|
|
longDescription = ''
|
|
The balena CLI is a Command Line Interface for balenaCloud or openBalena. It is a software
|
|
tool available for Windows, macOS and Linux, used through a command prompt / terminal window.
|
|
It can be used interactively or invoked in scripts. The balena CLI builds on the balena API
|
|
and the balena SDK, and can also be directly imported in Node.js applications.
|
|
'';
|
|
homepage = "https://github.com/balena-io/balena-cli";
|
|
changelog = "https://github.com/balena-io/balena-cli/blob/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
kalebpace
|
|
doronbehar
|
|
];
|
|
mainProgram = "balena";
|
|
};
|
|
}
|