pomo: init at 1.2.1 (#504796)

This commit is contained in:
Arne Keller
2026-07-23 08:51:06 +00:00
committed by GitHub
2 changed files with 45 additions and 0 deletions
+6
View File
@@ -19316,6 +19316,12 @@
githubId = 220262;
name = "Ion Mudreac";
};
mugaizzo = {
email = "mugahedman@hotmail.com";
github = "mugaizzo";
githubId = 15838537;
name = "Mugahed Izzeldin";
};
mulatta = {
email = "seungwon@mulatta.io";
github = "mulatta";
+39
View File
@@ -0,0 +1,39 @@
{
lib,
buildGoModule,
fetchFromGitHub,
iana-etc,
libredirect,
stdenvNoCC,
}:
buildGoModule (finalAttrs: {
pname = "pomo";
version = "1.2.1";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "Bahaaio";
repo = "pomo";
tag = "v${finalAttrs.version}";
hash = "sha256-gQ7bHQGaQPujpOwVdcwKgiYQjUECi/Pjt5LKwa1v1J8=";
};
vendorHash = "sha256-kbTYq4Xc86bcmNMhInq1rwYTbGRmu2TEXT2e7bqT5YY=";
nativeCheckInputs = lib.optionals stdenvNoCC.hostPlatform.isDarwin [ libredirect.hook ];
preCheck = lib.optionalString stdenvNoCC.hostPlatform.isDarwin ''
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols:/etc/services=${iana-etc}/etc/services
'';
meta = {
description = "Customizable TUI Pomodoro timer with ASCII art, progress bar, notifications, and stats";
homepage = "https://github.com/Bahaaio/pomo";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
mugaizzo
];
mainProgram = "pomo";
};
})