diff options
author | Vincent Ambo <tazjin@google.com> | 2020-01-26T01·18+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-01-26T01·20+0000 |
commit | 09621f53716240c6a48cac7f09193a43b0ad305b (patch) | |
tree | 5d32bb2f4c6626a417bee511b5e9304b58385474 /lisp/dns/default.nix | |
parent | 29e1de2fd248ec4e152d5b0c83514fa57bcb0a33 (diff) |
refactor(lisp/dns): Split package into multiple files
Adds a package definition file and moves the current client into client.lisp Note that the client is not working at all at this commit as this is a work-in-progress snapshot.
Diffstat (limited to 'lisp/dns/default.nix')
-rw-r--r-- | lisp/dns/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/dns/default.nix b/lisp/dns/default.nix index c41b02f97ca8..134540b2be2b 100644 --- a/lisp/dns/default.nix +++ b/lisp/dns/default.nix @@ -4,12 +4,15 @@ pkgs.nix.buildLisp.library { name = "dns"; deps = with pkgs.third_party.lisp; [ + drakma + lisp-binary + iterate alexandria cl-json - drakma ]; srcs = [ - ./resolver.lisp + ./package.lisp + ./client.lisp ]; } |