diff options
Diffstat (limited to 'third_party/lisp/usocket-server.nix')
-rw-r--r-- | third_party/lisp/usocket-server.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/lisp/usocket-server.nix b/third_party/lisp/usocket-server.nix new file mode 100644 index 000000000000..f2f11d7a17c8 --- /dev/null +++ b/third_party/lisp/usocket-server.nix @@ -0,0 +1,18 @@ +# Universal socket library for Common Lisp (server side) +{ depot, pkgs, ... }: + +let + inherit (depot.nix) buildLisp; + src = with pkgs; srcOnly lispPackages.usocket-server; +in buildLisp.library { + name = "usocket-server"; + + deps = with depot.third_party.lisp; [ + usocket + bordeaux-threads + ]; + + srcs = [ + "${src}/server.lisp" + ]; +} |