about summary refs log tree commit diff
path: root/third_party/lisp/sb-posix.nix
blob: 5fc65d3f592090a6fbac5173079048e6cee906d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# SB-POSIX is an SBCL component. This package just forces it to be
# loaded.
{ pkgs, ... }:

with pkgs;

nix.buildLisp.library {
  name = "sb-posix";
  srcs = lib.singleton (builtins.toFile "sb-posix.lisp" "(require 'sb-posix)");
}