16 lines
202 B
Nix
16 lines
202 B
Nix
|
{
|
||
|
depot ? import <depot> {},
|
||
|
universe ? import <universe> {},
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
depot.nix.buildLisp.library {
|
||
|
name = "f";
|
||
|
deps = with universe.lisp; [
|
||
|
prelude
|
||
|
];
|
||
|
srcs = [
|
||
|
./main.lisp
|
||
|
];
|
||
|
}
|