diff options
Diffstat (limited to 'third_party/lisp/sb-rotate-byte.nix')
-rw-r--r-- | third_party/lisp/sb-rotate-byte.nix | 10 |
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 000000000000..38e2397b4d85 --- /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)"); +} |