mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
fvm: init at 3.2.1
This commit is contained in:
parent
ec3113e0d2
commit
96d47166a6
2 changed files with 1112 additions and 0 deletions
29
pkgs/by-name/fv/fvm/package.nix
Normal file
29
pkgs/by-name/fv/fvm/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
1083
pkgs/by-name/fv/fvm/pubspec.lock.json
Normal file
1083
pkgs/by-name/fv/fvm/pubspec.lock.json
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue