blob: 6911b2102634a323fdb6a6c7d2d391371e964f21 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
depot ? import <depot> {},
universe ? import <universe> {},
...
}:
depot.nix.buildLisp.library {
name = "f";
deps = with universe.lisp; [
prelude
];
srcs = [
./main.lisp
];
}
|