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





                                       
           
          
          
                
               
               
        
              
              





                     

                       
                   
                  
                             
                    

                        












                                         
 
{ depot, ... }:

depot.nix.buildLisp.program {
  name = "panettone";

  deps = with depot.third_party.lisp; [
    cl-json
    cl-who
    drakma
    defclass-std
    easy-routes
    hunchentoot
    lass
    local-time
    postmodern
    trivial-ldap

    depot.lisp.klatre
  ];

  srcs = [
    ./panettone.asd
    ./src/packages.lisp
    ./src/util.lisp
    ./src/css.lisp
    ./src/authentication.lisp
    ./src/model.lisp
    ./src/panettone.lisp
  ];

  tests = {
    deps = with depot.third_party.lisp; [
      fiveam
    ];

    srcs = [
      ./test/package.lisp
      ./test/model_test.lisp
    ];

    expression = "(fiveam:run!)";
  };
}