Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# Base64 encoding for Common Lisp
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.cl-base64;
in depot.nix.buildLisp.library {
name = "cl-base64";
srcs = [
(src + "/package.lisp")
(src + "/encode.lisp")
(src + "/decode.lisp")
];
}