-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhatis.asd
23 lines (19 loc) · 843 Bytes
/
hatis.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defsystem :hatis
:description "Hackable Text Input System (provided via Wayland Protocols)"
:version "0.0.1"
:license "GPL-v3"
:author "Grigory Shepelev"
:homepage "https://github.com/shegeley/hatis"
:source-control (:git "https://github.com/shegeley/hatis")
:pathname #P"src/"
:defsystem-depends-on (:trivial-features ;; base
:alexandria ;; base
:trivia ;; matching
:arrows ;; syntax
:chanl ;; CSP multhithreading
:access ;; nice way to access nested structs elements
:wayflan ;; best lisp wayland client
:protocols)
:components ((:module "hatis"
:components ((:file "utils")
(:file "core" :depends-on ("utils"))))))