tvl-depot/third_party/lisp/unix-opts.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
233 B
Nix
Raw Normal View History

# 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"
];
}