tvl-depot/lisp/dns/default.nix
Vincent Ambo 09621f5371 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.
2020-01-26 01:20:45 +00:00

18 lines
228 B
Nix

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