summary refs log tree commit diff
path: root/pkgs/development/web/mailcatcher/default.nix
blob: a2fa509232dee87919568cea33f647b13a26c227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, bundlerApp }:

bundlerApp {
  pname = "mailcatcher";
  gemdir = ./.;
  exes = [ "mailcatcher" "catchmail" ];

  meta = with lib; {
    description = "SMTP server and web interface to locally test outbound emails";
    homepage    = https://mailcatcher.me/;
    license     = licenses.mit;
    maintainers = [ maintainers.zarelit ];
    platforms   = platforms.unix;
  };
}