about summary refs log tree commit diff
path: root/pkgs/by-name/pl
diff options
context:
space:
mode:
authorStanisław Pitucha2024-07-28 12:20:14 +1000
committerStanisław Pitucha2024-07-28 12:23:30 +1000
commit7bc9b3b5040e03eaa70080c42f1795fbc0483781 (patch)
treee880587ef14d31608cf8d0c59e66d4357dc96cfb /pkgs/by-name/pl
parent2d65995365a2a6b05db69e344d3b673c8d541bcd (diff)
plandex: init at 1.1.1
Diffstat (limited to 'pkgs/by-name/pl')
-rw-r--r--pkgs/by-name/pl/plandex/package.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/by-name/pl/plandex/package.nix b/pkgs/by-name/pl/plandex/package.nix
new file mode 100644
index 000000000000..e0652aa8470f
--- /dev/null
+++ b/pkgs/by-name/pl/plandex/package.nix
@@ -0,0 +1,28 @@
+{
+  lib,
+  buildGoModule,
+  fetchFromGitHub,
+}:
+buildGoModule rec {
+  pname = "plandex";
+  version = "1.1.1";
+
+  src = fetchFromGitHub {
+    owner = "plandex-ai";
+    repo = "plandex";
+    rev = "cli/v${version}";
+    hash = "sha256-q3DBkYmZxgrdlEUdGgFCf5IR17lKmYp7U5BD/4GXxjo=";
+  };
+
+  sourceRoot = "${src.name}/app/cli";
+
+  vendorHash = "sha256-aFfgXGRnsqS7Ik5geQ6yXL+8X0BfNhHGzF7GKIDC4iE=";
+
+  meta = {
+    mainProgram = "plandex";
+    description = "AI driven development in your terminal. Designed for large, real-world tasks. The sli part";
+    homepage = "https://plandex.ai/";
+    license = lib.licenses.agpl3Only;
+    maintainers = with lib.maintainers; [ viraptor ];
+  };
+}