budget_tracker_tui: init at 1.4.0
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
{
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
nix-update-script,
|
||||
rustPlatform,
|
||||
}:
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "budget-tracker-tui";
|
||||
version = "1.4.0";
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Feromond";
|
||||
repo = "budget_tracker_tui";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-rVNAYMfTGYRepeNSlm+d/bJq11lRNFZjpoQjQpclSzY=";
|
||||
};
|
||||
cargoHash = "sha256-u9XlckBJCRzpmY+Hs5x9cBWtxIN1zwMuIYMCuS7i6rQ=";
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/Feromond/budget_tracker_tui";
|
||||
description = "Terminal User Interface (TUI) budget tracker";
|
||||
changelog = "https://github.com/Feromond/budget_tracker_tui/releases/tag/${finalAttrs.src.tag}";
|
||||
mainProgram = "Budget_Tracker";
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ tomasrivera ];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user