rlisp/rlbuild/assets/system.rlisp

18 lines
407 B
Plaintext
Raw Permalink Normal View History

2024-12-10 03:00:19 -06:00
(def use-repo (fn (a b) (print a b)))
2024-12-10 08:32:03 -06:00
(def pkg-install (fn (a b) (print "installed" b "from" a)))
(def pkg-defaults (fn ()))
2024-12-10 03:00:19 -06:00
2024-12-10 08:32:03 -06:00
(def resolution (fn (x y fps) ()))
2024-12-10 03:00:19 -06:00
(def limine_res (resolution 1024 768 24))
2024-12-10 08:32:03 -06:00
(use-repo 'core "https://repo.ablecorp.us/core")
2024-12-10 03:00:19 -06:00
2024-12-10 08:32:03 -06:00
(pkg-install 'core 'limine)
(pkg-install 'core 'kernel-rust)
2024-12-10 03:00:19 -06:00
2024-12-10 08:32:03 -06:00
(pkg-install 'core 'sunset)
(pkg-install 'core 'ps2-driver)
2024-12-10 03:00:19 -06:00
2024-12-10 08:32:03 -06:00
(pkg-install 'core 'cluster)