about summary refs log tree commit diff
path: root/users/sterni/mblog/default.nix
blob: f8ba70b90bd189b39406bb2f8b93e4cb55b7a25c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ depot, pkgs, ... }:

depot.nix.buildLisp.program {
  name = "mnote-html";

  srcs = [
    ./packages.lisp
    ./maildir.lisp
    ./transformer.lisp
    ./note.lisp
    ./cli.lisp
  ];

  deps = [
    {
      sbcl = depot.nix.buildLisp.bundled "uiop";
      default = depot.nix.buildLisp.bundled "asdf";
    }
    depot.third_party.lisp.alexandria
    depot.third_party.lisp.closure-html
    depot.third_party.lisp.cl-date-time-parser
    depot.third_party.lisp.cl-who
    depot.third_party.lisp.mime4cl
  ];

  main = "mblog:main";

  # due to sclf
  brokenOn = [
    "ccl"
    "ecl"
  ];
}