
- Add Nix package for task-master-ai in packages/claude-task-master-ai.nix - Update packages/default.nix to export the new package - Add comprehensive documentation for packaging and MCP integration - Add guile scripting solution documentation
29 lines
912 B
Nix
29 lines
912 B
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchurl,
|
|
nodejs,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "task-master-ai";
|
|
version = "0.16.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/eyaltoledano/claude-task-master/archive/refs/tags/v${version}.tar.gz";
|
|
hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; # Will be replaced after first build attempt
|
|
};
|
|
|
|
npmDepsHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; # Will be replaced after first build attempt
|
|
|
|
# buildInputs = [ nodejs ]; # buildNpmPackage usually brings in nodejs
|
|
|
|
meta = with lib; {
|
|
description = "Claude Task Master AI - An intelligent task management and project breakdown tool";
|
|
homepage = "https://github.com/eyaltoledano/claude-task-master";
|
|
license = licenses.mit;
|
|
maintainers = [ ]; # Add your GitHub username if you want
|
|
platforms = platforms.all;
|
|
mainProgram = "task-master-ai";
|
|
};
|
|
}
|