Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion devcontainer/install-builddeps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,27 @@

# Define dependencies as an array, for easier formatting & comments.
# see: https://www.gnu.org/software/bash/manual/html_node/Arrays.html
# Contents inspired by experience and
# https://github.com/devcontainers/features/tree/main/src/common-utils .
DEPS=(
/usr/bin/{blurb,clang,curl,git,ln,tar,xz}
# Bare minimum
/usr/bin/{blurb,clang,git}

# Shell niceties
/usr/bin/{fish,zsh}
bash-completion
bash-color-prompt

# Common tools
/usr/bin/{curl,grep,less,ln,lsof,man,rg,which}

# Compression
/usr/bin/{tar,xz,zip}

# Editors
/usr/bin/{emacs,vim}

# Necessary for getting Python build dependencies
'dnf5-command(builddep)'

# LLVM sanitizer runtimes
Expand Down
Loading