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

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

  srcs = [
    ./wc.lisp
  ];

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