nixpkgs/pkgs/development/web/mailcatcher/default.nix
2019-07-22 12:02:47 +00:00

18 lines
482 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "mailcatcher";
gemdir = ./.;
exes = [ "mailcatcher" "catchmail" ];
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;
};
}