blob: 513656f5706da65a7af2fc78ae0783025d06ad6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
buildLisp.nix
=============
This is a build system for Common Lisp, written in Nix.
The project is in its early stages and currently supports nothing
other than compiling a bunch of Lisp sources into a combined FASL
file.
This is what it currently looks like:
```nix
nix.buildLisp.library {
name = "test-lib";
srcs = [
./nix/buildLisp/test-lib.lisp
];
}
```
Check back here in a few days for more information.
|