diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-24T10·52+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-24T10·52+0000 |
commit | 95d03facb3af93323101737d76470f190e7ca2ae (patch) | |
tree | ccca388ec70f33fdb678d4888e095a2c0dd6a9f1 /lisp/prelude.nix | |
parent | b6fa3941b3731e959a7f54bf8e68e43e9077bf90 (diff) |
Support prelude.lisp
Using this module to support utility functions that I have not classified further than being miscellaneous.
Diffstat (limited to 'lisp/prelude.nix')
-rw-r--r-- | lisp/prelude.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/prelude.nix b/lisp/prelude.nix new file mode 100644 index 000000000000..9051f82394ff --- /dev/null +++ b/lisp/prelude.nix @@ -0,0 +1,8 @@ +{ depot ? import <depot> {}, ... }: + +depot.nix.buildLisp.library { + name = "prelude"; + srcs = [ + ./prelude.lisp + ]; +} |