about summary refs log tree commit diff
path: root/third_party/lisp/unix-opts.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/lisp/unix-opts.nix')
-rw-r--r--third_party/lisp/unix-opts.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/lisp/unix-opts.nix b/third_party/lisp/unix-opts.nix
new file mode 100644
index 0000000000..2482961132
--- /dev/null
+++ b/third_party/lisp/unix-opts.nix
@@ -0,0 +1,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"
+  ];
+}