about summary refs log blame commit diff
path: root/blog/default.nix
blob: fd35570a322aab72e685fad53e634dac5dd2782f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                
 
   
                                                  

                                       
                                                   
                                                

                                
                  
                                                                        
               
             
            


                     
              

    
{ pkgs, depot, briefcase, ... }:

let
  injections = pkgs.writeText "injections.lisp" ''
    (in-package #:server)
    (setq *path-to-posts* "${./posts}")
    (setq *pandoc-bin* "${pkgs.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
  ];
}