feat(third_party/lisp): Add dummy package for sb-posix
This commit is contained in:
parent
3940b2e1a8
commit
11e0bf4958
1 changed files with 10 additions and 0 deletions
10
third_party/lisp/sb-posix.nix
vendored
Normal file
10
third_party/lisp/sb-posix.nix
vendored
Normal file
|
@ -0,0 +1,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)");
|
||||
}
|
Loading…
Reference in a new issue