blob: 38e2397b4d853112dabbf1725a043cda2b9277a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
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)");
}
|