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









                                      
             


           
{ pkgs, ... }:

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

  srcs = [
    ./wc.lisp
  ];

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