-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-r.scm
46 lines (40 loc) · 908 Bytes
/
vscode-r.scm
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
;; Baseline manifest for R that allows smooth integration with vscode
(specifications->manifest
(list "r-minimal"
;; base packages
"bash-minimal"
"glibc-locales"
"nss-certs"
;; Common command line tools lest the container is too empty.
"coreutils"
"grep"
"which"
"wget"
"sed"
"git"
"fd"
"ripgrep"
"direnv"
;; R markdown tools
"pandoc"
;; Toolchain and common libraries for "install.packages"
"gcc-toolchain@10"
"gfortran-toolchain"
"gawk"
"tar"
"gzip"
"unzip"
"make"
"cmake"
"pkg-config"
"cairo"
"libxt"
"openssl"
"curl"
"zlib"
;; vscode dependencies
"r-lintr"
"r-styler"
"r-languageserver"
"r-httpgd"
))