lol
1{ ruby_3_2, lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "mailcatcher";
5 gemdir = ./.;
6 exes = [ "mailcatcher" "catchmail" ];
7 ruby = ruby_3_2;
8
9 passthru.updateScript = bundlerUpdateScript "mailcatcher";
10
11 meta = with lib; {
12 description = "SMTP server and web interface to locally test outbound emails";
13 homepage = "https://mailcatcher.me/";
14 license = licenses.mit;
15 maintainers = with maintainers; [ zarelit nicknovitski ];
16 platforms = platforms.unix;
17 };
18}