{ pkgs, qmd, }: # This package creates a store path that transitively depends on all packages # that should be available at runtime in the OpenClaw pod. # CI uses this to push a single closure to Harmonia. pkgs.symlinkJoin { name = "openclaw-runtime-closure"; paths = [ pkgs.nodejs_22 pkgs.kubectl pkgs.jq pkgs.git pkgs.emacs pkgs.tsx pkgs.tea (pkgs.python3.withPackages (ps: [ ps.pymupdf ])) qmd ]; }