blob: d311f8590f74f50de1e629f51e17afc49084d60a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# SB-BSD-SOCKETS is an SBCL component. This package just forces it to
# be loaded.
{ pkgs, ... }:
with pkgs;
nix.buildLisp.library {
name = "sb-bsd-sockets";
srcs = lib.singleton (builtins.toFile "sb-bsd-sockets.lisp" "(require 'sb-bsd-sockets)");
}
|