backplane-dns/backplane-dns.asd

18 lines
483 B
Plaintext
Raw Normal View History

;;;; backplane-dns.asd
2020-11-04 12:34:28 -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"
:version "0.1.0"
2020-11-04 12:34:28 -08:00
:serial t
:depends-on (:alexandria
:arrows
:backplane-server
2020-11-04 12:34:28 -08:00
:cl-ppcre
:ip-utils
2020-11-04 12:34:28 -08:00
:postmodern
:trivia)
:components ((:file "package")
(:file "backplane-dns")))