tasktimer: init at 1.9.4

This commit is contained in:
Ashish SHUKLA 2022-02-03 04:53:53 +05:30
parent 441dc5d512
commit a4c8d1308d
No known key found for this signature in database
GPG Key ID: C746CFA9E74FA4B0
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tasktimer";
version = "1.9.4";
src = fetchFromGitHub {
owner = "caarlos0";
repo = pname;
rev = "v${version}";
sha256 = "sha256-M88JzcK9HwHeWbQ0McbCF1rIEiKnwh08oEoRck4A/Ho=";
};
vendorSha256 = "sha256-5OSAa7tGPtGyx0bet82FRoIozhhlFtakbPt6PtCTHd0=";
postInstall = ''
mv $out/bin/tasktimer $out/bin/tt
'';
meta = with lib; {
description = "Task Timer (tt) is a dead simple TUI task timer";
homepage = "https://github.com/caarlos0/tasktimer";
license = licenses.mit;
maintainers = with maintainers; [ abbe ];
mainProgram = "tt";
};
}

View File

@ -30801,6 +30801,8 @@ with pkgs;
tasknc = callPackage ../applications/misc/tasknc { };
tasktimer = callPackage ../applications/misc/tasktimer { };
taskwarrior = callPackage ../applications/misc/taskwarrior { };
taskwarrior-tui = callPackage ../applications/misc/taskwarrior-tui { };