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:
parent
98cc5f9fac
commit
e50c362244
3 changed files with 45 additions and 0 deletions
15
lisp/dns/default.nix
Normal file
15
lisp/dns/default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue