2c28f85946
Attempting to write a blog where: - The server is Common Lisp. Why? I'd like to learn Common Lisp. - The blog posts can be written in Markdown. - The package is developed and deployed using Nix. Most of this is a learning exercise. The blog itself is something that I'd like to use instead of Medium and other forums.
15 lines
226 B
Nix
15 lines
226 B
Nix
{
|
|
depot ? import <depot> {},
|
|
universe ? import <universe> {},
|
|
...
|
|
}:
|
|
|
|
depot.nix.buildLisp.program {
|
|
name = "server";
|
|
deps = with depot.third_party.lisp; [
|
|
hunchentoot
|
|
];
|
|
srcs = [
|
|
./src/server.lisp
|
|
];
|
|
}
|