todoist-cli: init at 1.61.2
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user