···1-{ lib, buildGoModule, fetchFromGitHub }:
23buildGoModule rec {
4 pname = "wakatime";
5- version = "1.61.0";
67 src = fetchFromGitHub {
8 owner = "wakatime";
9 repo = "wakatime-cli";
10 rev = "v${version}";
11- sha256 = "sha256-pd6kK1591dLEau9oKdd+A2y8rRerFQ+z2yY+/BsNUAI=";
12 };
1314- vendorHash = "sha256-R+VqIw8fztBH2WTf5vjqtMfASNnOTjA3DEndXYyyMi4=";
000000000000000000000000001516 meta = with lib; {
17- inherit (src.meta) homepage;
18 description = "WakaTime command line interface";
19- longDescription = ''
20- Command line interface to WakaTime used by all WakaTime text editor
21- plugins. You shouldn't need to directly use this package unless you
22- are building your own plugin or your text editor's plugin asks you
23- to install the wakatime CLI interface manually.
24- '';
25 license = licenses.bsd3;
026 mainProgram = "wakatime-cli";
27 };
28}