Skip to content

Commit 77bf8a4

Browse files
authored
Add common utilities to the dev container (#52)
1 parent 1fbf576 commit 77bf8a4

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

devcontainer/install-builddeps.sh

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,27 @@
55

66
# Define dependencies as an array, for easier formatting & comments.
77
# see: https://www.gnu.org/software/bash/manual/html_node/Arrays.html
8+
# Contents inspired by experience and
9+
# https://github.com/devcontainers/features/tree/main/src/common-utils .
810
DEPS=(
9-
/usr/bin/{blurb,clang,curl,git,ln,tar,xz}
11+
# Bare minimum
12+
/usr/bin/{blurb,clang,git}
13+
14+
# Shell niceties
15+
/usr/bin/{fish,zsh}
16+
bash-completion
17+
bash-color-prompt
18+
19+
# Common tools
20+
/usr/bin/{curl,grep,less,ln,lsof,man,rg,which}
21+
22+
# Compression
23+
/usr/bin/{tar,xz,zip}
24+
25+
# Editors
26+
/usr/bin/{emacs,vim}
27+
28+
# Necessary for getting Python build dependencies
1029
'dnf5-command(builddep)'
1130

1231
# LLVM sanitizer runtimes

0 commit comments

Comments
 (0)