about summary refs log blame commit diff
path: root/blog/default.nix
blob: 7005cc648d0098f30353ca8ed52898efe4c5a702 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                       
{
  depot ? import <depot> {},
  universe ? import <universe> {},
  ...
}:

depot.nix.buildLisp.program {
  name = "server";
  deps = with depot.third_party.lisp; [
    hunchentoot
  ];
  srcs = [
    ./src/server.lisp
  ];
}