about summary refs log tree commit diff
path: root/users/sterni/mblog/default.nix
blob: 16ae573ba78c7817e722c0e69b62fc550f9975cc (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
{ depot, pkgs, ... }:

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

  srcs = [
    ./packages.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-who
    depot.third_party.lisp.mime4cl
  ];

  main = "mblog:main";

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