From e50c362244be69c12a6d4f320c6ca00475d2de34 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 22 Jan 2020 18:04:26 +0000 Subject: 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. --- lisp/dns/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lisp/dns/default.nix (limited to 'lisp/dns/default.nix') diff --git a/lisp/dns/default.nix b/lisp/dns/default.nix new file mode 100644 index 000000000000..c41b02f97ca8 --- /dev/null +++ b/lisp/dns/default.nix @@ -0,0 +1,15 @@ +{ pkgs, ... }: + +pkgs.nix.buildLisp.library { + name = "dns"; + + deps = with pkgs.third_party.lisp; [ + alexandria + cl-json + drakma + ]; + + srcs = [ + ./resolver.lisp + ]; +} -- cgit 1.4.1