plandex: 1.1.1 -> 2.1.2 (#407292)

This commit is contained in:
Wolfgang Walther 2025-06-27 21:31:35 +00:00 committed by GitHub
commit 715719cd65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,22 +5,26 @@
}: }:
buildGoModule rec { buildGoModule rec {
pname = "plandex"; pname = "plandex";
version = "1.1.1"; version = "2.1.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "plandex-ai"; owner = "plandex-ai";
repo = "plandex"; repo = "plandex";
rev = "cli/v${version}"; rev = "cli/v${version}";
hash = "sha256-q3DBkYmZxgrdlEUdGgFCf5IR17lKmYp7U5BD/4GXxjo="; hash = "sha256-mNNL1K+gNhYDuKpGt3FP/L4JxO/bHyebhABOpFjLLLI=";
}; };
ldflags = [
"-X plandex-cli/version.Version=${version}"
];
sourceRoot = "${src.name}/app/cli"; sourceRoot = "${src.name}/app/cli";
vendorHash = "sha256-aFfgXGRnsqS7Ik5geQ6yXL+8X0BfNhHGzF7GKIDC4iE="; vendorHash = "sha256-0wYlCxg0CPPizdhJ1VfZEEcauy2rJeeTqPiiqsExBu8=";
meta = { meta = {
mainProgram = "plandex"; mainProgram = "plandex";
description = "AI driven development in your terminal. Designed for large, real-world tasks. The sli part"; description = "AI driven development in your terminal. Designed for large, real-world tasks. The cli part";
homepage = "https://plandex.ai/"; homepage = "https://plandex.ai/";
license = lib.licenses.agpl3Only; license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ viraptor ]; maintainers = with lib.maintainers; [ viraptor ];