From 500207f18aee8f4e1307ddec8e000b00f98d346b Mon Sep 17 00:00:00 2001
From: m3tam3re
Date: Sun, 26 Jul 2026 12:10:40 +0200
Subject: [PATCH] fix: remove broken eigent reference
The eigent package directory was deleted in 96f5d7f (which was titled
"chore: update n8n, openwork, vibetyper") but the callPackage reference
in pkgs/default.nix and the row in docs/packages/README.md were left
behind. As a result `nix build .#eigent` and `nix flake check` failed
with "undefined variable" errors when the eigent attribute was forced.
Drop both references so the package set evaluates cleanly.
---
docs/packages/README.md | 1 -
pkgs/default.nix | 1 -
2 files changed, 2 deletions(-)
diff --git a/docs/packages/README.md b/docs/packages/README.md
index d911c7f..7c51e04 100644
--- a/docs/packages/README.md
+++ b/docs/packages/README.md
@@ -15,7 +15,6 @@ These packages are built from source in `pkgs//`:
| `sidecar` | Companion tool for CLI agents with diffs, file trees, and task management | Go | `pkgs/sidecar/` |
| `td` | Minimalist CLI for tracking tasks across AI coding sessions | Go | `pkgs/td/` |
| `code2prompt` | Convert code to prompts | Go | `pkgs/code2prompt/` |
-| `eigent` | Eigenvalue tool | Python | `pkgs/eigent/` |
| `hyprpaper-random` | Random wallpaper setter for Hyprpaper | Shell | `pkgs/hyprpaper-random/` |
| `kestractl` | CLI for Kestra workflow orchestration | Go | `pkgs/kestractl/` |
| `launch-webapp` | Launch web applications | Shell | `pkgs/launch-webapp/` |
diff --git a/pkgs/default.nix b/pkgs/default.nix
index c99b6e6..666416f 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -18,7 +18,6 @@ in {
sidecar = pkgs.callPackage ./sidecar {};
td = pkgs.callPackage ./td {};
- eigent = pkgs.callPackage ./eigent {};
hyprpaper-random = pkgs.callPackage ./hyprpaper-random {};
launch-webapp = pkgs.callPackage ./launch-webapp {};
mem0 = pkgs.callPackage ./mem0 {};