feat(lisp/dns): Check in very early DNS-over-HTTPS client

This includes very barebones support for querying TXT and MX records
right now. The returned structure is not turned into a more convenient
format and error handling is, well, NIL.
This commit is contained in:
Vincent Ambo 2020-01-22 18:04:26 +00:00
parent 98cc5f9fac
commit e50c362244
3 changed files with 45 additions and 0 deletions

15
lisp/dns/default.nix Normal file
View file

@ -0,0 +1,15 @@
{ pkgs, ... }:
pkgs.nix.buildLisp.library {
name = "dns";
deps = with pkgs.third_party.lisp; [
alexandria
cl-json
drakma
];
srcs = [
./resolver.lisp
];
}