Support prelude.lisp

Using this module to support utility functions that I have not classified
further than being miscellaneous.
This commit is contained in:
William Carroll 2020-01-24 10:52:53 +00:00
parent b6fa3941b3
commit 95d03facb3
3 changed files with 22 additions and 15 deletions

8
lisp/prelude.nix Normal file
View file

@ -0,0 +1,8 @@
{ depot ? import <depot> {}, ... }:
depot.nix.buildLisp.library {
name = "prelude";
srcs = [
./prelude.lisp
];
}