about summary refs log tree commit diff
path: root/lisp/f/default.nix
blob: 0ca6898b6a153c15edde8de1ff958e4ec4a2cf0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  depot ? import <depot> {},
  briefcase ? import <briefcase> {},
  ...
}:

depot.nix.buildLisp.library {
  name = "f";
  deps = with briefcase.lisp; [
    prelude
  ];
  srcs = [
    ./main.lisp
  ];
}