fvm: init at 3.2.1

This commit is contained in:
emaryn 2025-04-05 06:45:39 +08:00
parent ec3113e0d2
commit 96d47166a6
2 changed files with 1112 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{
lib,
buildDartApplication,
fetchFromGitHub,
nix-update-script,
}:
buildDartApplication rec {
pname = "fvm";
version = "3.2.1";
src = fetchFromGitHub {
owner = "leoafarias";
repo = "fvm";
tag = version;
hash = "sha256-i7sJRBrS5qyW8uGlx+zg+wDxsxgmolTMcikHyOzv3Bs=";
};
pubspecLock = lib.importJSON ./pubspec.lock.json;
passthru.updateScript = nix-update-script { };
meta = {
description = "Simple CLI to manage Flutter SDK versions";
homepage = "https://github.com/leoafarias/fvm";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ emaryn ];
};
}

File diff suppressed because it is too large Load diff