ionic-cli: init at 7.2.1

It was dropped in #250282, but not replaced.
This commit is contained in:
Albert Larsan
2025-09-09 15:02:02 +02:00
parent afd64ceb0a
commit 93a611e793
2 changed files with 8300 additions and 0 deletions

8268
pkgs/by-name/io/ionic-cli/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,32 @@
{
buildNpmPackage,
fetchzip,
lib,
}:
buildNpmPackage (finalAttrs: {
pname = "ionic-cli";
version = "7.2.1";
src = fetchzip {
url = "https://registry.npmjs.org/@ionic/cli/-/cli-${finalAttrs.version}.tgz";
hash = "sha256-nrZMMyzoiO7ZJbNrPSRA1sOEy3OpgEXdyNS0JzAaTjY=";
};
postPatch = ''
cp ${./package-lock.json} package-lock.json
'';
npmDepsHash = "sha256-Nu4AWwFaGBakGAxUNllx4etUm4H5ygxAeMs1RWhzRQQ=";
dontNpmBuild = true;
meta = {
description = "Your go-to tool for developing Ionic apps";
homepage = "https://ionicframework.com/";
license = lib.licenses.mit;
mainProgram = "ionic";
maintainers = with lib.maintainers; [
albertlarsan68
];
};
})