Files

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

31 lines
590 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
ruby,
lib,
bundlerApp,
bundlerUpdateScript,
nixosTests,
}:
bundlerApp {
pname = "mailcatcher";
gemdir = ./.;
exes = [
"mailcatcher"
"catchmail"
];
passthru.updateScript = bundlerUpdateScript "mailcatcher";
passthru.tests = { inherit (nixosTests) mailcatcher; };
meta = {
description = "SMTP server and web interface to locally test outbound emails";
homepage = "https://mailcatcher.me/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
zarelit
nicknovitski
];
platforms = lib.platforms.unix;
};
}