stock-tui: init at 0.1.0 (#480913)

This commit is contained in:
isabel
2026-02-10 11:45:43 +00:00
committed by GitHub
2 changed files with 38 additions and 0 deletions
+6
View File
@@ -18848,6 +18848,12 @@
githubId = 10180857;
name = "Anmol Sethi";
};
ni5arga = {
email = "hello@ni5arga.com";
github = "ni5arga";
githubId = 45588772;
name = "Nisarga Adhikary";
};
nialov = {
email = "nikolasovaskainen@gmail.com";
github = "nialov";
+32
View File
@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "stock-tui";
version = "0.1.0";
src = fetchFromGitHub {
owner = "ni5arga";
repo = "stock-tui";
tag = "v${finalAttrs.version}";
hash = "sha256-5k24fBG0ZBr2JhVf30IGjLky087j203hZGEvtSzwUqQ=";
};
subPackages = [ "cmd/stock-tui" ];
vendorHash = "sha256-Use54AVRMZ9xYx8tQpcRN3th+MufuER3lCJ+JVPpYRU=";
passthru.updateScript = nix-update-script { };
meta = {
description = "Terminal-based stock and cryptocurrency price tracker";
homepage = "https://github.com/ni5arga/stock-tui";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ni5arga ];
mainProgram = "stock-tui";
};
})