tvl-depot/nix/buildLisp
Vincent Ambo 21e9a65a35 fix(nix/buildLisp): Don't load binaries in sbclWith
Adds an attribute on each Lisp derivation that specifies whether it is
a binary or not. This attribute is then filtered for in sbclWith.
2020-01-17 16:41:57 +00:00
..
example fix(buildLisp): Wrap executables to set load paths correctly 2020-01-09 03:32:29 +00:00
default.nix fix(nix/buildLisp): Don't load binaries in sbclWith 2020-01-17 16:41:57 +00:00
README.md feat(nix/buildLisp): Add initial sketch including buildLisp.library 2020-01-08 02:00:54 +00:00

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.buildLisp.library {
  name = "test-lib";
  srcs = [
    ./nix/buildLisp/test-lib.lisp
  ];
}

Check back here in a few days for more information.