tvl-depot/lisp/f/default.nix

16 lines
202 B
Nix
Raw Normal View History

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