diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-24T10·55+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-24T10·55+0000 |
commit | 143fc970322237963d5358ae832fd18ea045d67a (patch) | |
tree | 0b7602e17e4204d2160348d0ee901db6d9b46e05 /lisp/f/default.nix | |
parent | e2e59c63e7899ea06e4273f0ee58a5842f6e3384 (diff) |
Start working on f.lisp
I would like to port the `f.el` library to Common Lisp. I'm adding a README, some build files, and the module itself to get started.
Diffstat (limited to 'lisp/f/default.nix')
-rw-r--r-- | lisp/f/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lisp/f/default.nix b/lisp/f/default.nix new file mode 100644 index 000000000000..6911b2102634 --- /dev/null +++ b/lisp/f/default.nix @@ -0,0 +1,15 @@ +{ + depot ? import <depot> {}, + universe ? import <universe> {}, + ... +}: + +depot.nix.buildLisp.library { + name = "f"; + deps = with universe.lisp; [ + prelude + ]; + srcs = [ + ./main.lisp + ]; +} |