nixpkgs/pkgs/development/web/mailcatcher/default.nix

18 lines
484 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2017-07-01 21:40:11 +00:00
bundlerApp {
pname = "mailcatcher";
gemdir = ./.;
exes = [ "mailcatcher" "catchmail" ];
2017-07-01 21:40:11 +00:00
passthru.updateScript = bundlerUpdateScript "mailcatcher";
meta = with lib; {
2017-07-01 21:40:11 +00:00
description = "SMTP server and web interface to locally test outbound emails";
homepage = "https://mailcatcher.me/";
2017-07-01 21:40:11 +00:00
license = licenses.mit;
maintainers = with maintainers; [ zarelit nicknovitski ];
2017-07-01 21:40:11 +00:00
platforms = platforms.unix;
};
}