nixos/pkgs/plandex_cli.nix

25 lines
514 B
Nix
Raw Normal View History

2024-04-05 16:52:00 +02:00
{
lib,
fetchFromGitHub,
buildGoModule
}:
buildGoModule {
pname = "plandex-cli";
version = "v0.8.1";
vendorHash = lib.fakeHash;
src = fetchFromGitHub {
owner = "plandex-ai";
repo = "plandex";
rev = "cli/v0.8.1";
hash = "sha256-+1EETcqjvyi9W+y6nhcEFbc2bv2EjFEBxoxMrWPz7Ro=";
};
modRoot = "app/cli";
meta = with lib; {
description = "An AI coding engine for complex tasks";
homepage = "https://github.com/plandex-ai/plandex";
license = licenses.agpl3Only;
};
}