about summary refs log tree commit diff
path: root/third_party/lisp/usocket-server.nix
blob: 5d6d04535f0c962377d5ad8f3175f53f0188defc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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"
  ];
}