feat(third_party/lisp): Add derivations for hunchentoot & deps

This commit is contained in:
Vincent Ambo 2020-01-22 00:23:09 +00:00
parent 6de462f674
commit fe3ea06cbc
5 changed files with 131 additions and 0 deletions

10
third_party/lisp/sb-rotate-byte.nix vendored Normal file
View file

@ -0,0 +1,10 @@
# SB-ROTATE-BYTE is an SBCL component. This package just forces it to
# be loaded.
{ pkgs, ... }:
with pkgs;
nix.buildLisp.library {
name = "sb-rotate-byte";
srcs = lib.singleton (builtins.toFile "sb-rotate-byte.lisp" "(require 'sb-rotate-byte)");
}