mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
23 lines
531 B
Nix
23 lines
531 B
Nix
{ lib
|
|
, vscode-utils }:
|
|
|
|
let
|
|
inherit (vscode-utils) buildVscodeMarketplaceExtension;
|
|
in
|
|
buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "vscode-wakatime";
|
|
publisher = "WakaTime";
|
|
version = "18.0.5";
|
|
sha256 = "sha256-vWqGxMbxKqd4UgKK0sOKadMTDf6Y3TQxfWsc93MHjFs=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = ''
|
|
Visual Studio Code plugin for automatic time tracking and metrics generated
|
|
from your programming activity
|
|
'';
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|