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.
This commit is contained in:
parent
e2e59c63e7
commit
143fc97032
3 changed files with 68 additions and 0 deletions
15
lisp/f/default.nix
Normal file
15
lisp/f/default.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
depot ? import <depot> {},
|
||||
universe ? import <universe> {},
|
||||
...
|
||||
}:
|
||||
|
||||
depot.nix.buildLisp.library {
|
||||
name = "f";
|
||||
deps = with universe.lisp; [
|
||||
prelude
|
||||
];
|
||||
srcs = [
|
||||
./main.lisp
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue