about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <Vincent Ambo>2020-01-09T01·55+0000
committerVincent Ambo <Vincent Ambo>2020-01-09T01·55+0000
commit11e0bf49583983b01621b3068ec94ee7a40f71b9 (patch)
tree767fb4cbbbdd6c6a7c9ffc42a26d692a503c0e89 /third_party
parent3940b2e1a80ce0c01e6a2f4016e5ebe2abcc7289 (diff)
feat(third_party/lisp): Add dummy package for sb-posix r/362
Diffstat (limited to 'third_party')
-rw-r--r--third_party/lisp/sb-posix.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/lisp/sb-posix.nix b/third_party/lisp/sb-posix.nix
new file mode 100644
index 0000000000..5fc65d3f59
--- /dev/null
+++ b/third_party/lisp/sb-posix.nix
@@ -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)");
+}