tvl-depot/third_party/lisp/cl-base64.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
267 B
Nix
Raw Normal View History

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