2023-08-04 22:07:22 +00:00
|
|
|
{ pkgs, lib, bundlerApp, bundlerUpdateScript }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "mailcatcher";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "mailcatcher" "catchmail" ];
|
2023-08-04 22:07:22 +00:00
|
|
|
ruby = pkgs.ruby_3_0;
|
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;
|
|
|
|
};
|
|
|
|
}
|