about summary refs log tree commit diff
path: root/lisp/dns/default.nix
blob: 134540b2be2bfced69e3a6277a69c1a30d7dabf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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
  ];
}