gama-tui: init at 1.1.4

Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
Co-authored-by: Kenichi Kamiya <kachick1@gmail.com>
This commit is contained in:
phanirithvij
2024-12-08 10:04:59 +05:30
co-authored by Kenichi Kamiya
parent caa6178863
commit 97748fc9a5
+36
View File
@@ -0,0 +1,36 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "gama-tui";
version = "1.1.4";
src = fetchFromGitHub {
owner = "termkit";
repo = "gama";
tag = "v${version}";
hash = "sha256-laE3lW2MX3vYxsF5iHl0sLKCAPRAIZGQs72+vdbX4t0=";
};
vendorHash = "sha256-rx18df0iiYqQToydXcA6Kqsn3lePIL1RNMSvD+a4WrI=";
ldflags = [
"-s"
"-X main.Version=v${version}"
];
# requires network access
doCheck = false;
meta = {
description = "Manage your GitHub Actions from Terminal with great UI";
homepage = "https://github.com/termkit/gama";
changelog = "https://github.com/termkit/gama/releases";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ phanirithvij ];
mainProgram = "gama";
};
}