mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
Merge pull request #270583 from blinry/klog-time-tracker
klog-time-tracker: init at 6.2
This commit is contained in:
commit
9b10b84c4c
@ -2508,6 +2508,12 @@
|
||||
githubId = 5700358;
|
||||
name = "Thomas Blank";
|
||||
};
|
||||
blinry = {
|
||||
name = "blinry";
|
||||
email = "mail@blinry.org";
|
||||
github = "blinry";
|
||||
githubId = 81277;
|
||||
};
|
||||
blitz = {
|
||||
email = "js@alien8.de";
|
||||
matrix = "@js:ukvly.org";
|
||||
|
23
pkgs/by-name/kl/klog-time-tracker/package.nix
Normal file
23
pkgs/by-name/kl/klog-time-tracker/package.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "klog-time-tracker";
|
||||
version = "6.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jotaen";
|
||||
repo = "klog";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-PFYPthrschw6XEf128L7yBygrVR3E3rtATCpxXGFRd4=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-X5xL/4blWjddJsHwwfLpGjHrfia1sttmmqHjaAIVXVo=";
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user