about summary refs log tree commit diff
path: root/third_party/lisp/sb-rotate-byte.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-01-22T00·23+0000
committerVincent Ambo <tazjin@google.com>2020-01-22T00·23+0000
commitfe3ea06cbc32c9b727549a6505e69234f3072f6f (patch)
tree0fca475404528540bcf1bef98f9360ba67c828a2 /third_party/lisp/sb-rotate-byte.nix
parent6de462f674affc4407b89ffe356c2159efad353c (diff)
feat(third_party/lisp): Add derivations for hunchentoot & deps r/437
Diffstat (limited to '')
-rw-r--r--third_party/lisp/sb-rotate-byte.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/lisp/sb-rotate-byte.nix b/third_party/lisp/sb-rotate-byte.nix
new file mode 100644
index 0000000000..38e2397b4d
--- /dev/null
+++ b/third_party/lisp/sb-rotate-byte.nix
@@ -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)");
+}