Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 533 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 533 Bytes

nix-shell support for lispPackagesLite

Enter this directory and run:

nix-shell

If you have direnv installed, just enter the directory and it should automatically load it for you.

Now you can run SBCL with arrow-macros on the ASDF path, plus all its dependencies (which includes Alexandria):

sbcl --script <<EOF
(require "asdf")
(asdf:load-system "alexandria")
(print (alexandria:iota 3))
EOF

You could also for example run emacs from this shell to have access to SBCL from within it.