Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / lisp-modules-new-obsolete / readme.md
blobd5be7492334eb7a1ec932569c3986ed51b0aec2b
1 # lisp-modules
3 Utilities for packaging ASDF systems using Nix.
5 ## Quick start
7 #### Build an ASDF system:
9 ```
10 nix-build ./examples/bordeaux-threads.nix
11 ls result/src
12 ```
14 #### Build an `sbclWithPackages`:
16 ```
17 nix-build ./examples/sbcl-with-bt.nix
18 result/bin/sbcl
19 ```
21 #### Re-import Quicklisp packages:
23 ```
24 nix-shell --run 'sbcl --script ql-import.lisp'
25 ```
27 #### Test build of packages
28 ```
29 (cd test;  sbcl --script test.lisp ccl)
30 ```
32 ## Documentation
34 See `doc` directory.