2020-11-04 12:34:28 -08:00
|
|
|
;;;; dns-backplane.asd
|
|
|
|
|
2020-11-11 09:39:00 -08:00
|
|
|
(asdf:defsystem #:backplane-dns
|
|
|
|
:description "Server to listen on Fudo backplane for DNS updates"
|
|
|
|
:author "Niten <niten@fudo.org>"
|
2020-11-04 12:34:28 -08:00
|
|
|
:license "Specify license here"
|
2020-11-11 09:39:00 -08:00
|
|
|
:version "0.1.0"
|
2020-11-04 12:34:28 -08:00
|
|
|
:serial t
|
|
|
|
:depends-on (:alexandria
|
|
|
|
:arrows
|
|
|
|
:cl-ppcre
|
|
|
|
:cl+ssl
|
|
|
|
:cl-xmpp
|
|
|
|
:cl-xmpp-tls
|
|
|
|
:postmodern
|
|
|
|
:trivia)
|
|
|
|
:components ((:file "package")
|
2020-11-11 09:39:00 -08:00
|
|
|
(:file "backplane-dns")))
|