nixpkgs/pkgs/development/web/mailcatcher/default.nix
Raito Bezarius 374917faf7 mailcatcher: use Ruby 3.2
Ruby 3.0 will be removed.
2023-11-17 16:03:00 +01:00

19 lines
513 B
Nix

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