Remove plandex from nixos flake

This commit is contained in:
Florian RICHER 2024-04-14 22:26:51 +02:00
parent 1017b44254
commit 7556385f25
3 changed files with 0 additions and 39 deletions

View file

@ -11,7 +11,6 @@
./programs/direnv.nix
./programs/chromium.nix
./programs/flatpak.nix
./programs/plandex.nix
];
home = {

View file

@ -1,7 +0,0 @@
{ config, pkgs, ... }:
let
plandex_cli = pkgs.callPackage ../../pkgs/plandex_cli.nix { };
in
{
home.packages = [plandex_cli];
}

View file

@ -1,31 +0,0 @@
{
lib,
fetchFromGitHub,
buildGoModule
}:
buildGoModule rec {
pname = "plandex-cli";
version = "v0.8.2";
vendorHash = "sha256-+giOD3sB/SnyccFqoGnC2+DVR9u+MF+mqTFSoEEQqRw=";
src = fetchFromGitHub {
owner = "mrdev023";
repo = "plandex";
rev = "18da990f9cea059015b93e76420d14205a43a876";
hash = "sha256-bHbPN8b3k4K2V5ul17U8O6RjBQdT3xT1I31Pe94Q52c=";
};
modRoot = "app/cli";
ldflags = [
"-s -w -X github.com/${src.owner}/${src.repo}/app/cli/main.version.Version=${version}"
];
meta = with lib; {
description = "An AI coding engine for complex tasks";
homepage = "https://github.com/plandex-ai/plandex";
license = licenses.agpl3Only;
};
}