about summary refs log blame commit diff
path: root/third_party/lisp/cl-base64.nix
blob: 08055a047119c37b2b0292cb2b0b323c545dad7c (plain) (tree)
1
2
3
4
5
                                 
                     
 
                                                    
                                








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