update install-deps some more

This commit is contained in:
Gered 2024-09-07 15:44:59 -04:00
parent adab75c5f1
commit b15a616ef0

View file

@ -1,7 +1,17 @@
#!/bin/bash #!/bin/bash
emerge -av --noreplace \ echo "Ensuring system dependencies are present ..."
sudo emerge -av --noreplace \
x11-misc/xclip \ x11-misc/xclip \
sys-apps/ripgrep \ sys-apps/ripgrep \
net-libs/nodejs net-libs/nodejs \
sys-devel/clang
# don't want to be root for this, rustup is typically installed by non-root users and won't be
# present for root at all.
if ! command -v rustup &> /dev/null; then
echo "Not installing rust-analyzer, rustup not found."
else
rustup component add rust-src rust-analyzer
fi