nixpkgs/pkgs/by-name/kl/klog-time-tracker/package.nix

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

24 lines
615 B
Nix
Raw Normal View History

2023-11-27 21:13:49 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "klog-time-tracker";
2024-03-23 22:43:54 +00:00
version = "6.3";
2023-11-27 21:13:49 +00:00
src = fetchFromGitHub {
owner = "jotaen";
repo = "klog";
rev = "v${version}";
2024-03-23 22:43:54 +00:00
hash = "sha256-/NbMXJY853XIiEEVPJdZRO5IZEDYaalSekQ4kxnZgIw=";
2023-11-27 21:13:49 +00:00
};
2024-03-23 22:43:54 +00:00
vendorHash = "sha256-L84eKm1wktClye01JeyF0LOV9A8ip6Fr+/h09VVZ56k=";
2023-11-27 21:13:49 +00:00
meta = with lib; {
description = "Command line tool for time tracking in a human-readable, plain-text file format";
homepage = "https://klog.jotaen.net";
license = licenses.mit;
maintainers = [ maintainers.blinry ];
mainProgram = "klog";
};
}