tvl-depot/third_party/lisp/usocket-server.nix

20 lines
346 B
Nix
Raw Normal View History

# 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"
];
}