blob: 5fc65d3f592090a6fbac5173079048e6cee906d0 (
plain) (
tree)
|
|
# 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)");
}
|