nixpkgs/pkgs/development/web/mailcatcher/default.nix
2023-08-01 15:54:10 +02:00

19 lines
514 B
Nix

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