nixpkgs/pkgs/development/web/mailcatcher/default.nix
2018-10-25 14:34:11 +01:00

16 lines
380 B
Nix

{ 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;
};
}