task-master-ai: init at 0.15.0 (#410826)

This commit is contained in:
Yohann Boniface
2025-05-26 00:42:54 +02:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+6
View File
@@ -20858,6 +20858,12 @@
githubId = 3302;
name = "Renzo Carbonara";
};
repparw = {
email = "ubritos@gmail.com";
github = "repparw";
githubId = 45952970;
name = "repparw";
};
reputable2772 = {
name = "Reputable2772";
github = "Reputable2772";
@@ -0,0 +1,33 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
nix-update-script,
}:
buildNpmPackage (finalAttrs: {
pname = "task-master-ai";
version = "0.15.0";
src = fetchFromGitHub {
owner = "eyaltoledano";
repo = "claude-task-master";
tag = "v${finalAttrs.version}";
hash = "sha256-cCfyQ9xU8axuZyTTVsrYVuic6DPHnAc4YX7aKj2MmSE=";
};
npmDepsHash = "sha256-UNGJ64E12ppo37gJBDNpyRFYfNEJMH5mRnK3HyWcy8E=";
dontNpmBuild = true;
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Node.js agentic AI workflow orchestrator";
homepage = "https://task-master.dev";
changelog = "https://github.com/eyaltoledano/claude-task-master/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = licenses.mit;
mainProgram = "task-master-ai";
maintainers = [ maintainers.repparw ];
platforms = platforms.all;
};
})