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
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
buildNpmPackage rec {
|
|
pname = "ares-cli";
|
|
version = "3.2.1";
|
|
src = fetchFromGitHub {
|
|
owner = "webos-tools";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-L8suZDtXVchVyvp7KCv0UaceJqqGBdfopd5tZzwj3MY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
ln -s npm-shrinkwrap.json package-lock.json
|
|
'';
|
|
|
|
dontNpmBuild = true;
|
|
npmDepsHash = "sha256-ATIxe/sulfOpz5KiWauDAPZrlfUOFyiTa+5ECFbVd+0=";
|
|
|
|
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 ];
|
|
};
|
|
}
|