blob: 5b953d94b29e802d2949705e1bd9bc8642f6251a (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Hunchentoot is a web framework for Common Lisp.
{ depot, pkgs, ...}:
let
src = with pkgs; srcOnly lispPackages.hunchentoot;
url-rewrite = depot.nix.buildLisp.library {
name = "url-rewrite";
srcs = map (f: src + ("/url-rewrite/" + f)) [
"packages.lisp"
"specials.lisp"
"primitives.lisp"
"util.lisp"
"url-rewrite.lisp"
];
};
in depot.nix.buildLisp.library {
name = "hunchentoot";
deps = with depot.third_party.lisp; [
alexandria
bordeaux-threads
chunga
cl-base64
cl-fad
rfc2388
cl-plus-ssl
cl-ppcre
flexi-streams
md5
trivial-backtrace
usocket
url-rewrite
];
srcs = map (f: src + ("/" + f)) [
"hunchentoot.asd"
"packages.lisp"
"compat.lisp"
"specials.lisp"
"conditions.lisp"
"mime-types.lisp"
"util.lisp"
"log.lisp"
"cookie.lisp"
"reply.lisp"
"request.lisp"
"session.lisp"
"misc.lisp"
"headers.lisp"
"set-timeouts.lisp"
"taskmaster.lisp"
"acceptor.lisp"
"easy-handlers.lisp"
];
brokenOn = [
"ecl" # dynamic cffi
];
}
|