blob: 7ab9bea59ff54f4d6a7908fedb52b22e87242049 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ 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
];
}
|