2020-11-11 10:52:09 -08:00
|
|
|
;;;; backplane-dns.asd
|
2020-11-04 12:34:28 -08:00
|
|
|
|
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
|
2020-11-24 11:51:03 -08:00
|
|
|
:backplane-server
|
2020-11-04 12:34:28 -08:00
|
|
|
:cl-ppcre
|
2020-11-24 11:51:03 -08:00
|
|
|
:ip-utils
|
2020-11-04 12:34:28 -08:00
|
|
|
:postmodern
|
|
|
|
:trivia)
|
|
|
|
:components ((:file "package")
|
2020-11-24 11:51:03 -08:00
|
|
|
(:file "backplane-dns")))
|