fix(nix): include apps/shared as tui dep (#68109)

https://github.com/NousResearch/hermes-agent/pull/61067
added a @hermes/shared dep for `ui-tui`. added it to the nix deps to fix
builds
This commit is contained in:
ethernet 2026-07-20 11:23:34 -04:00 committed by GitHub
parent 8f33e39682
commit 1705a44074
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,12 @@
# nix/tui.nix — Hermes TUI (Ink/React) compiled with tsc and bundled
{ pkgs, hermesNpmLib, ... }:
let
npm = hermesNpmLib.mkNpmPassthru { dirs = [ "ui-tui" ]; };
npm = hermesNpmLib.mkNpmPassthru {
dirs = [
"ui-tui"
"apps/shared"
];
};
packageJson = builtins.fromJSON (builtins.readFile (npm.src + "/ui-tui/package.json"));
version = packageJson.version;