lisp-scripts/time-window.asd
eriedaberrie 7065f73dd3 feat: add time-window
No more random lisp scripts and derivations in my main NixOS config anymore
2024-10-28 00:02:24 -07:00

8 lines
253 B
Common Lisp

(asdf:defsystem time-window
:pathname #P"time-window/"
:build-operation "program-op"
:entry-point "time-window:main"
:components ((:file "package")
(:file "time-window" :depends-on ("package")))
:depends-on (#:cl-hyprland-ipc))