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

16 lines
380 B
Nix
Raw Normal View History

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