about summary refs log tree commit diff
path: root/third_party/lisp/s-sysdeps.nix
blob: 9c4da4a02b25f6858094941433f2404dd3a0bfd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# A Common Lisp abstraction layer over platform dependent functionality.
{ depot, pkgs, ... }:

let src = with pkgs; srcOnly lispPackages.s-sysdeps;
in depot.nix.buildLisp.library {
  name = "s-sysdeps";

  srcs = [
    "${src}/src/package.lisp"
    "${src}/src/sysdeps.lisp"
  ];

  deps = with depot.third_party.lisp; [
    bordeaux-threads
    usocket
    usocket-server
  ];
}