tasktimer: init at 1.9.4
This commit is contained in:
parent
441dc5d512
commit
a4c8d1308d
27
pkgs/applications/misc/tasktimer/default.nix
Normal file
27
pkgs/applications/misc/tasktimer/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user