about summary refs log tree commit diff
path: root/third_party/lisp/unix-opts.nix
blob: e52eab959d3ead6c5cc5ee007ca05efff06ebf92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# unix-opts is a portable command line argument parser
{ depot, pkgs, ...}:


let src = with pkgs; srcOnly lispPackages.unix-opts;
in depot.nix.buildLisp.library {
  name = "unix-opts";

  srcs = [
    "${src}/unix-opts.lisp"
  ];
}