mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / by-name / pl / plandex / package.nix
blobe0652aa8470faedd900e3e213cfbcaf72f51e487
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
6 buildGoModule rec {
7   pname = "plandex";
8   version = "1.1.1";
10   src = fetchFromGitHub {
11     owner = "plandex-ai";
12     repo = "plandex";
13     rev = "cli/v${version}";
14     hash = "sha256-q3DBkYmZxgrdlEUdGgFCf5IR17lKmYp7U5BD/4GXxjo=";
15   };
17   sourceRoot = "${src.name}/app/cli";
19   vendorHash = "sha256-aFfgXGRnsqS7Ik5geQ6yXL+8X0BfNhHGzF7GKIDC4iE=";
21   meta = {
22     mainProgram = "plandex";
23     description = "AI driven development in your terminal. Designed for large, real-world tasks. The sli part";
24     homepage = "https://plandex.ai/";
25     license = lib.licenses.agpl3Only;
26     maintainers = with lib.maintainers; [ viraptor ];
27   };