about summary refs log blame commit diff
path: root/third_party/lisp/cl-smtp.nix
blob: 7ab9bea59ff54f4d6a7908fedb52b22e87242049 (plain) (tree)
1
2
3
4
5
6

                     
                                                  

                                
                                       












                                   



                        
 
{ depot, pkgs, ... }:

let src = with pkgs; srcOnly lispPackages.cl-smtp;
in depot.nix.buildLisp.library {
  name = "cl-smtp";
  deps = with depot.third_party.lisp; [
    usocket
    trivial-gray-streams
    flexi-streams
    cl-base64
    cl-plus-ssl
  ];

  srcs = map (f: src + ("/" + f)) [
    "package.lisp"
    "attachments.lisp"
    "cl-smtp.lisp"
    "mime-types.lisp"
  ];

  brokenOn = [
    "ecl" # dynamic cffi
  ];
}