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

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

  srcs = [
    ./wc.lisp
  ];

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