diff options
author | Vincent Ambo <tazjin@google.com> | 2020-01-22T00·23+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-01-22T00·23+0000 |
commit | fe3ea06cbc32c9b727549a6505e69234f3072f6f (patch) | |
tree | 0fca475404528540bcf1bef98f9360ba67c828a2 /third_party/lisp/sb-rotate-byte.nix | |
parent | 6de462f674affc4407b89ffe356c2159efad353c (diff) |
feat(third_party/lisp): Add derivations for hunchentoot & deps r/437
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)"); +} |