todoist-cli: init at 1.61.2

This commit is contained in:
João Santos Reis
2026-05-06 23:25:17 +01:00
parent 81dc56e474
commit 0fd25756ed
+36
View File
@@ -0,0 +1,36 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
testers,
todoist-cli,
}:
buildNpmPackage rec {
pname = "todoist-cli";
version = "1.61.2";
src = fetchFromGitHub {
owner = "Doist";
repo = "todoist-cli";
rev = "v${version}";
sha256 = "sha256-A7SrwLD1296YCtiHRvrtN2AQ1PKDsvFCTWPwyimFWMI=";
};
npmDepsHash = "sha256-vPts0GjwpDRiiWG7cP2N4Jlci3JGtaqpA8MYdrGCBkI=";
doCheck = true;
__structuredAttrs = true;
passthru.tests.version = testers.testVersion {
package = todoist-cli;
};
meta = {
description = "A command-line interface for Todoist";
homepage = "https://github.com/Doist/todoist-cli";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ joaosreis ];
mainProgram = "td";
};
}