Some checks failed
CI / test-unit (push) Has been cancelled
CI / test-integration (push) Has been cancelled
CI / test-env-virtual (push) Has been cancelled
CI / test-env-nix (push) Has been cancelled
CI / test-e2e (push) Has been cancelled
CI / test-virgin-user (push) Has been cancelled
CI / test-virgin-root (push) Has been cancelled
CI / codesniffer-shellcheck (push) Has been cancelled
CI / codesniffer-ruff (push) Has been cancelled
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / codesniffer-ruff (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
https://chatgpt.com/share/693dcbad-3d30-800f-acfe-22f7263f3e80
44 lines
1.4 KiB
Bash
Executable File
44 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
FLAKE_DIR="/usr/lib/package-manager"
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Try to ensure that "nix" is on PATH (common locations + container user)
|
|
# ---------------------------------------------------------------------------
|
|
if ! command -v nix >/dev/null 2>&1; then
|
|
CANDIDATES=(
|
|
"/nix/var/nix/profiles/default/bin/nix"
|
|
"${HOME:-/root}/.nix-profile/bin/nix"
|
|
"/home/nix/.nix-profile/bin/nix"
|
|
)
|
|
|
|
for candidate in "${CANDIDATES[@]}"; do
|
|
if [[ -x "$candidate" ]]; then
|
|
PATH="$(dirname "$candidate"):${PATH}"
|
|
export PATH
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# If nix is still missing, try to run nix/init.sh once
|
|
# ---------------------------------------------------------------------------
|
|
if ! command -v nix >/dev/null 2>&1; then
|
|
if [[ -x "${FLAKE_DIR}/nix/init.sh" ]]; then
|
|
"${FLAKE_DIR}/nix/init.sh" || true
|
|
fi
|
|
fi
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Primary path: use Nix flake if available
|
|
# ---------------------------------------------------------------------------
|
|
if command -v nix >/dev/null 2>&1; then
|
|
exec nix run "${FLAKE_DIR}#pkgmgr" -- "$@"
|
|
fi
|
|
|
|
echo "[launcher] ERROR: 'nix' binary not found on PATH after init."
|
|
echo "[launcher] Nix is required to run pkgmgr (no Python fallback)."
|
|
exit 1
|