about summary refs log tree commit diff
path: root/lisp/klatre/default.nix
blob: 2c7bb6490a9ffa02654742033a0b919fb5becb75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ depot, ... }:

depot.nix.buildLisp.library {
  name = "klatre";

  deps = with depot.third_party.lisp; [
    local-time
  ];

  srcs = [
    ./package.lisp
    ./klatre.lisp
  ];
}