rinf_cli: init at 8.8.1 (#413223)

This commit is contained in:
Fernando Rodrigues
2025-12-26 23:57:53 +00:00
committed by GitHub
2 changed files with 33 additions and 0 deletions
+5
View File
@@ -18976,6 +18976,11 @@
github = "noaccOS";
githubId = 24324352;
};
Noah765 = {
name = "Noah765";
github = "Noah765";
githubId = 99338019;
};
noahfraiture = {
name = "Noahcode";
email = "pro@noahcode.dev";
+28
View File
@@ -0,0 +1,28 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rinf_cli";
version = "8.8.1";
src = fetchFromGitHub {
owner = "cunarist";
repo = "rinf";
tag = "v${finalAttrs.version}";
hash = "sha256-Nqzc3GXOXl+0zBOUQN58ib9HvVRMKymHckw9KGoKKyU=";
};
sourceRoot = "${finalAttrs.src.name}/rust_crate_cli";
cargoHash = "sha256-R55WVlVR5gjg4U4Icp379dXUp9tJAR0eTZy6glzA7nk=";
meta = {
description = "Framework for creating cross-platform Rust apps leveraging Flutter";
homepage = "https://rinf.cunarist.com";
changelog = "https://github.com/cunarist/rinf/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Noah765 ];
mainProgram = "rinf";
};
})