tvl-depot/nix/buildLisp
Vincent Ambo ca199a57d9 feat(buildLisp): Implement dependency loading & propagation
Similar to buildGo.nix, the library derivations carry information
about their dependencies which is merged when a load file is
instantiated.

The load files are created when compiling libraries, but will in the
future also be created when wrapping SBCL and dumping images.
2020-01-08 18:40:53 +00:00
..
default.nix feat(buildLisp): Implement dependency loading & propagation 2020-01-08 18:40:53 +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.