-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.mk
32 lines (25 loc) · 1.17 KB
/
config.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
NERDFONTS_BASEURL:=https://github.com/ryanoasis/nerd-fonts/releases/download/
NERDFONTS_VERSION:=v3.0.2
NERDFONTS_NAMES:=3270 Hack Monoid
NUSHELL_REPO_URL:=https://github.com/nushell/nushell
NUSHELL_TAG:=0.82.0
NUSHELL_BUILD_DEPS:=build-essential openssl pkg-config libssl-dev
STARSHIP_REPO_URL:=https://github.com/starship/starship
STARSHIP_TAG:=v1.15.0
STARSHIP_BUILD_DEPS:=build-essential cmake
CARAPACE_REPO_URL:=https://github.com/rsteube/carapace-bin.git
CARAPACE_TAG:=v0.25.1
CARAPACE_BUILD_DEPS:=
NEOVIM_ENABLED:=T
NEOVIM_REPO_URL:=https://github.com/neovim/neovim
NEOVIM_TAG:=v0.9.1
NEOVIM_BUILD_DEPS:=build-essential file ninja-build gettext cmake unzip curl
FNM_ENABLED:=T # fnm is only installed if this is nonempty
FNM_REPO_URL:=https://github.com/Schniz/fnm.git
FNM_TAG:=v1.35.0
FNM_BUILD_DEPS:=build-essential
# rust is mostly statically linked, but you want a Debian or Ubuntu base image with the same glibc of your target machine.
RUST_BASE_IMAGE:=debian:bookworm
# golang is mostly statically linked, but you want a Debian or Ubuntu base image with the same glibc of your target machine.
GOLANG_BASE_IMAGE:=docker.io/golang:1.20.6-bookworm
C_BASE_IMAGE:=debian:bookworm