2024-01-02 11:29:13 +00:00
|
|
|
{ ruby_3_2, lib, bundlerApp, bundlerUpdateScript }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "mailcatcher";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "mailcatcher" "catchmail" ];
|
2024-01-02 11:29:13 +00:00
|
|
|
ruby = ruby_3_2;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "mailcatcher";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "SMTP server and web interface to locally test outbound emails";
|
|
|
|
homepage = "https://mailcatcher.me/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zarelit nicknovitski ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|