blob: 2482961132638e8174f8294d97afb6f5d0be7803 (
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"
];
}
|