18 lines
407 B
Plaintext
18 lines
407 B
Plaintext
(def use-repo (fn (a b) (print a b)))
|
|
(def pkg-install (fn (a b) (print "installed" b "from" a)))
|
|
(def pkg-defaults (fn ()))
|
|
|
|
(def resolution (fn (x y fps) ()))
|
|
|
|
(def limine_res (resolution 1024 768 24))
|
|
|
|
(use-repo 'core "https://repo.ablecorp.us/core")
|
|
|
|
(pkg-install 'core 'limine)
|
|
(pkg-install 'core 'kernel-rust)
|
|
|
|
(pkg-install 'core 'sunset)
|
|
(pkg-install 'core 'ps2-driver)
|
|
|
|
(pkg-install 'core 'cluster)
|