blob: 688d3715cbfdd024cbf0e84226e5151e2f8d4817 (
plain)
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
|
(defsystem "oneliners.cli"
:version "alpha-0.6.0"
:author "Colin Okay"
:license "AGPLv3"
:depends-on ("trivial-clipboard"
"str"
"jonathan"
"dexador"
"net.didierverna.clon"
"cl-readline"
"magic-ed"
"oneliners.api-client")
:components ((:module "lib"
:components
((:file "package")
(:file "running")
(:file "term")
(:file "prompt")
(:file "util")
(:file "oneliner")
(:file "state")
(:file "client")))
(:module "app"
:components
((:file "package")
(:file "app"))))
:description "")
|