2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2020-01-22 19:04:26 +01:00
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
depot.nix.buildLisp.library {
|
2020-01-22 19:04:26 +01:00
|
|
|
name = "dns";
|
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
deps = with depot.third_party.lisp; [
|
2020-01-26 02:18:34 +01:00
|
|
|
drakma
|
|
|
|
lisp-binary
|
|
|
|
iterate
|
2020-01-22 19:04:26 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
srcs = [
|
2020-01-26 02:18:34 +01:00
|
|
|
./package.lisp
|
2020-01-26 21:00:22 +01:00
|
|
|
./message.lisp
|
2020-01-26 02:18:34 +01:00
|
|
|
./client.lisp
|
2020-01-22 19:04:26 +01:00
|
|
|
];
|
|
|
|
}
|