forked from philhofer/distill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.sld
116 lines (102 loc) · 1.77 KB
/
base.sld
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
(define-library (distill base)
(import
scheme
(srfi 2)
(srfi 26) ; cut/cute
(srfi 39) ; parameterize
(srfi 69)
(srfi 88)
(distill eprint)
(distill filepath)
(distill kvector)
(distill text)
(distill memo)
(distill plan)
(distill package)
(distill execline))
(cond-expand
(chicken
(import
(only (chicken syntax) er-macro-transformer)
(only (chicken port) with-output-to-string)
(only (chicken base) include error flatten foldl when unless delay-force o)
(only (chicken string) conc))
(import-for-syntax
(only (chicken io) read-string))))
(export
; for loading premade configs, etc:
cdn-artifact
; libc:
musl
libssp-nonshared
; config:
default-config
default-build-config
gcc+musl-static-config
; gcc deps:
libgmp
libmpfr
libmpc
m4
zlib
gawk
byacc
reflex
libisl
bzip2
libbz2
make
; busybox:
busybox-core
busybox-full
busybox/config
hard
; helper package lists:
binutils-for-triple
gcc-for-triple
cc-for-target
native-toolchain
gcc
; skaware
skalibs
execline-tools
libexecline
s6
libs6
s6-rc
libs6rc
; execline helpers
exportall
; linux:
perl
libelf
linux-headers
linux/config-static
uboot/config
; networking:
libmnl
libnftnl
iptables
iproute2
; compression/archive tools
xz-utils
xz-tools
liblzma
lz4
liblz4
zstd
libzstd
libarchive
bsdtar
; ssl
libressl
; filesystem tools
e2fsprogs
squashfs-tools
dosfstools
mtools
imgtools
; bootloader tools
mlb2
nasm)
(include "base.scm"))