2021-04-03 18:10:41 +02:00
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
src = pkgs.fetchFromGitLab {
|
|
|
|
domain = "gitlab.common-lisp.net";
|
|
|
|
owner = "cl-smtp";
|
|
|
|
repo = "cl-smtp";
|
|
|
|
rev = "ed47d326fad867ee11323fa3a0f307b5d40e8f2b";
|
|
|
|
sha256 = "0vjjfapcrdc5671jz2d24h8zvpz7skq1x6pi9fvw6ls5sgms6fr0";
|
|
|
|
};
|
|
|
|
|
|
|
|
in depot.nix.buildLisp.library {
|
|
|
|
name = "cl-smtp";
|
2021-04-10 02:13:18 +02:00
|
|
|
deps = with depot.third_party.lisp; [
|
2021-04-03 18:10:41 +02:00
|
|
|
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"
|
|
|
|
];
|
|
|
|
}
|