about summary refs log tree commit diff
path: root/fun/wcl/default.nix
blob: e4d9804c807c7dd13e6404558cf0933f7ccbc3f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ depot, ... }:

depot.nix.buildLisp.program {
  name = "wc";

  srcs = [
    ./wc.lisp
  ];

  deps = with depot.third_party.lisp; [
    unix-opts
    iterate
  ];
}