tvl-depot/third_party/lisp/sb-rotate-byte.nix

11 lines
256 B
Nix
Raw Normal View History

# 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)");
}