tvl-depot/lisp/dns/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
223 B
Nix
Raw Normal View History

{ depot, ... }:
depot.nix.buildLisp.library {
name = "dns";
deps = with depot.third_party.lisp; [
drakma
lisp-binary
iterate
];
srcs = [
./package.lisp
./message.lisp
./client.lisp
];
}