diff options
author | Vincent Ambo <Vincent Ambo> | 2020-01-09T01·55+0000 |
---|---|---|
committer | Vincent Ambo <Vincent Ambo> | 2020-01-09T01·55+0000 |
commit | 11e0bf49583983b01621b3068ec94ee7a40f71b9 (patch) | |
tree | 767fb4cbbbdd6c6a7c9ffc42a26d692a503c0e89 /third_party/lisp | |
parent | 3940b2e1a80ce0c01e6a2f4016e5ebe2abcc7289 (diff) |
feat(third_party/lisp): Add dummy package for sb-posix r/362
Diffstat (limited to 'third_party/lisp')
-rw-r--r-- | third_party/lisp/sb-posix.nix | 10 |
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 000000000000..5fc65d3f5920 --- /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)"); +} |