nixpkgs/pkgs/applications/misc/tasktimer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
672 B
Nix
Raw Normal View History

2022-02-02 23:23:53 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tasktimer";
2022-11-10 12:27:55 +00:00
version = "1.11.0";
2022-02-02 23:23:53 +00:00
src = fetchFromGitHub {
owner = "caarlos0";
repo = pname;
rev = "v${version}";
2022-11-10 12:27:55 +00:00
sha256 = "sha256-CAqOsxmJxDgQRMx8cN23TajHd6BNiCFraFvhf5kKnzc=";
2022-02-02 23:23:53 +00:00
};
2022-11-10 12:27:55 +00:00
vendorSha256 = "sha256-Tk0yI/WFr0FV0AxJDStlP3XLem3v78ueuXyadhrLAog=";
2022-02-02 23:23:53 +00:00
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 caarlos0 ];
2022-02-02 23:23:53 +00:00
mainProgram = "tt";
};
}