Merge pull request #305515 from blackheaven/openpomodoro-cli

openpomodoro-cli: init at 0.3.0
This commit is contained in:
Aleksana 2024-04-26 18:51:13 +08:00 committed by GitHub
commit a392966154
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 39 additions and 0 deletions

View File

@ -7219,6 +7219,12 @@
githubId = 40209356;
name = "Gabriel Doriath Döhler";
};
gdifolco = {
email = "gautier.difolco@gmail.com";
github = "blackheaven";
githubId = 1362807;
name = "Gautier Di Folco";
};
gdinh = {
email = "nix@contact.dinh.ai";
github = "gdinh";

View File

@ -0,0 +1,33 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "openpomodoro-cli";
version = "0.3.0";
src = fetchFromGitHub {
owner = "open-pomodoro";
repo = "openpomodoro-cli";
rev = "refs/tags/v${version}";
hash = "sha256-h/o4yxrZ8ViHhN2JS0ZJMfvcJBPCsyZ9ZQw9OmKnOfY=";
};
vendorHash = "sha256-BR9d/PMQ1ZUYWSDO5ID2bkTN+A+VbaLTlz5t0vbkO60=";
ldflags = [
"-w"
"-s"
"-X=main.Version=${version}"
];
meta = with lib; {
description = "A command-line Pomodoro tracker which uses the Open Pomodoro Format";
homepage = "https://github.com/open-pomodoro/openpomodoro-cli";
changelog = "https://github.com/open-pomodoro/openpomodoro-cli/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ gdifolco ];
mainProgram = "openpomodoro-cli";
};
}