tvl-depot/fun/wcl/default.nix
Vincent Ambo 10e2e56b67 refactor(fun/wcl): Use portable unix-opts library
unix-opts, imported into buildLisp.nix in the previous commit,
provides an implementation independent way of parsing command line
arguments.
2020-01-29 10:12:07 +00:00

14 lines
164 B
Nix

{ pkgs, ... }:
pkgs.nix.buildLisp.program {
name = "wc";
srcs = [
./wc.lisp
];
deps = with pkgs.third_party.lisp; [
unix-opts
iterate
];
}