Files
2026-06-03 23:15:25 +00:00

39 lines
1.1 KiB
Nix

{
lib,
buildNpmPackage,
fetchFromGitHub,
nix-update-script,
nodejs_22,
}:
buildNpmPackage rec {
pname = "ares-cli";
version = "3.2.4";
src = fetchFromGitHub {
owner = "webos-tools";
repo = "cli";
rev = "v${version}";
hash = "sha256-dM8o/mK8AbQNCE6UrSWyOkL5c3G25j3NfoDYJ6X7irg=";
};
nodejs = nodejs_22;
dontNpmBuild = true;
npmDepsHash = "sha256-18sZW5yBDkEUlDgAERAsUQCOUOaBao6+wHOM9TCAlms=";
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://webostv.developer.lge.com/develop/tools/cli-introduction";
description = "Collection of commands used for creating, packaging, installing, and launching web apps for LG webOS TV";
longDescription = ''
webOS CLI (Command Line Interface) provides a collection of commands used for creating, packaging, installing,
and launching web apps in the command line environment. The CLI allows you to develop and test your app without using
a specific IDE.
'';
mainProgram = "ares";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ rucadi ];
};
}