18 lines
483 B
Common Lisp
18 lines
483 B
Common Lisp
;;;; backplane-dns.asd
|
|
|
|
(asdf:defsystem #:backplane-dns
|
|
:description "Server to listen on Fudo backplane for DNS updates"
|
|
:author "Niten <niten@fudo.org>"
|
|
:license "Specify license here"
|
|
:version "0.1.0"
|
|
:serial t
|
|
:depends-on (:alexandria
|
|
:arrows
|
|
:backplane-server
|
|
:cl-ppcre
|
|
:ip-utils
|
|
:postmodern
|
|
:trivia)
|
|
:components ((:file "package")
|
|
(:file "backplane-dns")))
|