Files

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

37 lines
457 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
alcotest,
angstrom,
base64,
buildDunePackage,
colombe,
hxd,
ke,
lib,
logs,
mrmime,
rresult,
tls,
}:
buildDunePackage {
pname = "sendmail";
inherit (colombe) version src;
propagatedBuildInputs = [
base64
colombe
logs
rresult
hxd
ke
tls
];
doCheck = true;
checkInputs = [
alcotest
mrmime
];
meta = colombe.meta // {
description = "Library to be able to send an email";
};
}