about summary refs log tree commit diff
path: root/blog/default.nix
blob: aaece3366876174167519db9557c057359c7ed4b (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
{
  nixpkgs ? import <nixpkgs> {},
  depot ? import <depot> {},
  briefcase ? import <briefcase> {},
  ...
}:

let
  injections = nixpkgs.writeText "injections.lisp" ''
    (in-package #:server)
    (setq *path-to-posts* "${./posts}")
    (setq *pandoc-bin* "${nixpkgs.pandoc}/bin/pandoc")
    (setq *html-template* "${./src/index.html}")
  '';
in depot.nix.buildLisp.program {
  name = "server";
  deps = with depot.third_party.lisp; with briefcase.third_party.lisp; [
    hunchentoot
    cl-arrows
    cl-ppcre
  ];
  srcs = [
    ./src/server.lisp
    injections
  ];
}