diff options
Diffstat (limited to 'fun/🕰️/default.nix')
-rw-r--r-- | fun/🕰️/default.nix | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/fun/🕰️/default.nix b/fun/🕰️/default.nix new file mode 100644 index 000000000000..d6fd5fc35ef6 --- /dev/null +++ b/fun/🕰️/default.nix @@ -0,0 +1,36 @@ +{ depot, ... }: + +let + inherit (depot.nix) + buildLisp + ; + + lib = buildLisp.library { + name = "lib🕰️"; + deps = [ + depot.third_party.lisp.local-time + ]; + + srcs = [ + ./lib.lisp + ]; + }; + + bin = buildLisp.program { + name = "🕰️"; + deps = [ + depot.third_party.lisp.unix-opts + depot.lisp.klatre + (buildLisp.bundled "uiop") + lib + ]; + + srcs = [ + ./bin.lisp + ]; + + main = "🕰️.bin:🚂"; + }; +in bin // { + inherit lib; +} |